TypeScript/tests/baselines/reference/separateCompilationNonAmbientConstEnum.types
2015-04-15 16:44:20 -07:00

17 lines
218 B
Plaintext

=== tests/cases/compiler/separateCompilationNonAmbientConstEnum.ts ===
const enum E { X = 100 };
>E : E
>X : E
>100 : number
var e = E.X;
>e : E
>E.X : E
>E : typeof E
>X : E
export var x;
>x : any