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

19 lines
180 B
Plaintext

=== tests/cases/compiler/mergedEnumDeclarationCodeGen.ts ===
enum E {
>E : E
a,
>a : E
b = a
>b : E
>a : E
}
enum E {
>E : E
c = a
>c : E
>a : E
}