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

5 lines
51 B
TypeScript

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