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