TypeScript/tests/baselines/reference/sourceMapValidationEnums.errors.txt
2014-07-12 17:30:19 -07:00

16 lines
269 B
Plaintext

==== tests/cases/compiler/sourceMapValidationEnums.ts (1 errors) ====
enum e {
x,
y,
x
~
!!! Duplicate identifier 'x'.
}
enum e2 {
x = 10,
y = 10,
z,
x2
}
enum e3 {
}