TypeScript/tests/baselines/reference/contextualTyping34.js

6 lines
124 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [contextualTyping34.ts]
var foo = <{ id: number;}> ({id:4});
//// [contextualTyping34.js]
var foo = ({ id: 4 });