TypeScript/tests/baselines/reference/ambientEnumElementInitializer6.types

13 lines
171 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/ambientEnumElementInitializer6.ts ===
declare module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
enum E {
>E : E
2014-08-15 23:33:16 +02:00
e = 3
>e : E
2015-04-13 21:36:11 +02:00
>3 : number
2014-08-15 23:33:16 +02:00
}
}