TypeScript/tests/baselines/reference/arrowFunctionWithObjectLiteralBody1.js

6 lines
156 B
TypeScript

//// [arrowFunctionWithObjectLiteralBody1.ts]
var v = a => <any>{}
//// [arrowFunctionWithObjectLiteralBody1.js]
var v = function (a) { return {}; };