TypeScript/tests/baselines/reference/objectTypeWithDuplicateNumericProperty.js
2014-07-12 17:30:19 -07:00

48 lines
549 B
JavaScript

//// [objectTypeWithDuplicateNumericProperty.ts]
// 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
}
//// [objectTypeWithDuplicateNumericProperty.js]
var C = (function () {
function C() {
}
return C;
})();
var a;
var b = {
1: 1,
1.0: 1,
1.: 1,
1.00: 1
};