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

16 lines
185 B
Plaintext

=== tests/cases/compiler/autonumberingInEnums.ts ===
enum Foo {
>Foo : Foo
a = 1
>a : Foo
>1 : number
}
enum Foo {
>Foo : Foo
b // should work fine
>b : Foo
}