TypeScript/tests/baselines/reference/contextualTyping19.js

7 lines
177 B
TypeScript

//// [contextualTyping19.ts]
var foo:{id:number;}[] = [{id:1}]; foo = [{id:1}, {id:2}];
//// [contextualTyping19.js]
var foo = [{ id: 1 }];
foo = [{ id: 1 }, { id: 2 }];