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

6 lines
52 B
TypeScript

module M {
enum E { }
var x = E[0];
}