TypeScript/tests/cases/compiler/typeOfEnumAndVarRedeclarations.ts
2014-07-12 17:30:19 -07:00

10 lines
No EOL
260 B
TypeScript

enum E {
a
}
enum E {
b = 1
}
var x = E;
var x: { a: E; b: E;[x: number]: string; }; // Shouldnt error
var y = E;
var y: { a: E; b: E;[x: number]: string;[x: number]: string } // two errors: the types are not identical and duplicate signatures