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

6 lines
160 B
JavaScript

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