TypeScript/tests/baselines/reference/enumNegativeLiteral1.types

12 lines
135 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/enumNegativeLiteral1.ts ===
enum E {
>E : E
a = -5, b, c
>a : E
>-5 : number
>b : E
>c : E
}