TypeScript/tests/baselines/reference/contextualTyping1.js

5 lines
115 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [contextualTyping1.ts]
var foo: {id:number;} = {id:4};
//// [contextualTyping1.js]
2015-01-29 21:55:25 +01:00
var foo = { id: 4 };\n