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

6 lines
122 B
TypeScript

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