TypeScript/tests/baselines/reference/arrowFunctionInExpressionStatement2.js

11 lines
202 B
JavaScript
Raw Normal View History

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