TypeScript/tests/cases/compiler/enumNumbering1.ts
2014-07-12 17:30:19 -07:00

8 lines
121 B
TypeScript

enum Test {
A,
B,
C = Math.floor(Math.random() * 1000),
D = 10,
E // Error but shouldn't be
}