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

15 lines
172 B
Plaintext

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