TypeScript/tests/baselines/reference/contextualTyping20.js

7 lines
202 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [contextualTyping20.ts]
var foo:{id:number;}[] = [{id:1}]; foo = [{id:1}, {id:2, name:"foo"}];
//// [contextualTyping20.js]
var foo = [{ id: 1 }];
foo = [{ id: 1 }, { id: 2, name: "foo" }];