TypeScript/tests/baselines/reference/indexIntoEnum.types
2014-08-15 14:37:48 -07:00

13 lines
168 B
Plaintext

=== 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
}