TypeScript/tests/baselines/reference/enumWithNaNProperty.types
2016-09-08 15:00:22 -07:00

10 lines
109 B
Plaintext

=== tests/cases/compiler/enumWithNaNProperty.ts ===
enum A {
>A : A
NaN = 1
>NaN : A
>1 : 1
}