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

18 lines
180 B
Text

=== 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
}