TypeScript/tests/cases/compiler/enumNumbering1.ts

8 lines
121 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
enum Test {
A,
B,
C = Math.floor(Math.random() * 1000),
D = 10,
E // Error but shouldn't be
}