tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts(2,19): error TS1005: ',' expected.
tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts(3,18): error TS1005: ',' expected.


==== tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts (2 errors) ====
    // error
    var oct1 = 0O13334823;
                      ~~~
!!! error TS1005: ',' expected.
    var oct2 = 0o34318592;
                     ~~~~
!!! error TS1005: ',' expected.
    
    var obj1 = {
        0O45436: "hi",
        19230: "Hello",
        "19230": "world",
    };
    