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

9 lines
275 B
Plaintext

==== tests/cases/compiler/duplicateLocalVariable4.ts (1 errors) ====
enum E{
a
}
var x = E;
var x = E.a;
~
!!! Subsequent variable declarations must have the same type. Variable 'x' must be of type 'typeof E', but here has type 'E'.