TypeScript/tests/baselines/reference/contextualTyping37.js

11 lines
172 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [contextualTyping37.ts]
var foo = <{ id: number; }[]>[{ foo: "s" }, { }];
//// [contextualTyping37.js]
var foo = [
{
foo: "s"
},
{}
];