TypeScript/tests/baselines/reference/contextualTyping18.js

7 lines
158 B
TypeScript

//// [contextualTyping18.ts]
var foo: {id:number;} = <{id:number;}>({ }); foo = {id: 5};
//// [contextualTyping18.js]
var foo = ({});
foo = { id: 5 };