TypeScript/tests/baselines/reference/indexIntoEnum.types

13 lines
168 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/indexIntoEnum.ts ===
module M {
>M : typeof M
enum E { }
>E : E
var x = E[0];
>x : string
>E[0] : string
>E : typeof E
}