TypeScript/tests/baselines/reference/enumNegativeLiteral1.types
2014-08-15 14:37:48 -07:00

12 lines
135 B
Plaintext

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