mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Add check and testcases for invalid binary digits and octal digits
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
// Error
|
||||
var binary = 0b21010;
|
||||
var binary1 = 0B21010;
|
||||
var octal = 0o81010;
|
||||
var octal = 0O91010;
|
||||
Reference in New Issue
Block a user