TypeScript/tests/baselines/reference/ambientEnumElementInitializer6.types

12 lines
158 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
enum E {
>E : E
e = 3
>e : E
}
}