TypeScript/tests/cases/compiler/es5-oldStyleOctalLiteralInEnums.ts

5 lines
51 B
TypeScript
Raw Normal View History

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