TypeScript/tests/baselines/reference/ambientEnumElementInitializer6.types

13 lines
349 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/ambientEnumElementInitializer6.ts ===
declare module M {
2015-04-13 23:01:57 +02:00
>M : typeof M, Symbol(M, Decl(ambientEnumElementInitializer6.ts, 0, 0))
2014-08-15 23:33:16 +02:00
enum E {
2015-04-13 23:01:57 +02:00
>E : E, Symbol(E, Decl(ambientEnumElementInitializer6.ts, 0, 18))
2014-08-15 23:33:16 +02:00
e = 3
2015-04-13 23:01:57 +02:00
>e : E, Symbol(E.e, Decl(ambientEnumElementInitializer6.ts, 1, 12))
2015-04-13 21:36:11 +02:00
>3 : number
2014-08-15 23:33:16 +02:00
}
}