TypeScript/tests/baselines/reference/contextualTyping1.js
2015-01-29 12:55:25 -08:00

5 lines
115 B
JavaScript

//// [contextualTyping1.ts]
var foo: {id:number;} = {id:4};
//// [contextualTyping1.js]
var foo = { id: 4 };\n