TypeScript/tests/baselines/reference/typeCheckReturnExpression.js

6 lines
150 B
TypeScript
Raw Normal View History

//// [typeCheckReturnExpression.ts]
var foo = () => undefined;
//// [typeCheckReturnExpression.js]
var foo = function () { return undefined; };