TypeScript/tests/baselines/reference/contextualTyping17.js

7 lines
175 B
TypeScript

//// [contextualTyping17.ts]
var foo: {id:number;} = {id:4}; foo = {id: 5, name:"foo"};
//// [contextualTyping17.js]
var foo = { id: 4 };
foo = { id: 5, name: "foo" };