TypeScript/tests/cases/conformance/expressions/propertyAccess/propertyAccessNumericLiterals.ts
2017-01-24 13:42:05 -08:00

7 lines
No EOL
137 B
TypeScript

// @target: es3
0xffffffff.toString();
0o01234.toString();
0b01101101.toString();
1234..toString();
1e0.toString();
000.toString();