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

6 lines
124 B
TypeScript

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