TypeScript/tests/baselines/reference/objectTypeWithDuplicateNumericProperty.js

50 lines
648 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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]
// numeric properties must be distinct after a ToNumber operation
// so the below are all errors
2014-07-13 01:04:16 +02:00
var C = (function () {
function C() {
}
return C;
})();
var a;
var b = {
1: 1,
1.0: 1,
1.: 1,
1.00: 1
};