TypeScript/tests/baselines/reference/arrowFunctionWithObjectLiteralBody2.js

8 lines
167 B
TypeScript
Raw Normal View History

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