TypeScript/tests/cases/conformance/types/members/objectTypeWithDuplicateNumericProperty.ts
2014-07-12 17:30:19 -07:00

31 lines
331 B
TypeScript

// numeric properties must be distinct after a ToNumber operation
// so the below are all errors
class C {
1;
1.0;
1.;
1.00;
}
interface I {
1;
1.0;
1.;
1.00;
}
var a: {
1;
1.0;
1.;
1.00;
}
var b = {
1: 1,
1.0: 1,
1.: 1,
1.00: 1
}