TypeScript/tests/baselines/reference/arrowFunctionInExpressionStatement1.js

6 lines
136 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [arrowFunctionInExpressionStatement1.ts]
() => 0;
//// [arrowFunctionInExpressionStatement1.js]
(function () { return 0; });