TypeScript/tests/baselines/reference/enumNegativeLiteral1.types
2016-09-01 14:25:44 -07:00

13 lines
145 B
Plaintext

=== tests/cases/compiler/enumNegativeLiteral1.ts ===
enum E {
>E : E
a = -5, b, c
>a : E.a
>-5 : -5
>5 : 5
>b : E.b
>c : E.c
}