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

11 lines
309 B
Plaintext

=== tests/cases/compiler/enumNegativeLiteral1.ts ===
enum E {
>E : Symbol(E, Decl(enumNegativeLiteral1.ts, 0, 0))
a = -5, b, c
>a : Symbol(E.a, Decl(enumNegativeLiteral1.ts, 0, 8))
>b : Symbol(E.b, Decl(enumNegativeLiteral1.ts, 1, 11))
>c : Symbol(E.c, Decl(enumNegativeLiteral1.ts, 1, 14))
}