TypeScript/tests/baselines/reference/separateCompilationNonAmbientConstEnum.types

17 lines
218 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/separateCompilationNonAmbientConstEnum.ts ===
const enum E { X = 100 };
>E : E
>X : E
2015-04-13 21:36:11 +02:00
>100 : number
var e = E.X;
>e : E
>E.X : E
>E : typeof E
>X : E
export var x;
>x : any