TypeScript/tests/baselines/reference/subtypingWithOptionalProperties.js

22 lines
679 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [subtypingWithOptionalProperties.ts]
// subtyping is not transitive due to optional properties but the subtyping algorithm assumes it is for the 99% case
// returns { s?: number; }
function f<T>(a: T) {
var b: { s?: number } = a;
return b;
}
var r = f({ s: new Object() }); // ok
r.s && r.s.toFixed(); // would blow up at runtime
//// [subtypingWithOptionalProperties.js]
// subtyping is not transitive due to optional properties but the subtyping algorithm assumes it is for the 99% case
// returns { s?: number; }
2014-07-13 01:04:16 +02:00
function f(a) {
var b = a;
return b;
}
var r = f({ s: new Object() }); // ok
r.s && r.s.toFixed(); // would blow up at runtime