TypeScript/tests/cases/compiler/es5-oldStyleOctalLiteralInEnums.ts
2016-12-22 19:21:38 +03:00

5 lines
51 B
TypeScript

// @target: ES5
enum E {
x = -01,
y = 02,
}