TypeScript/tests/cases/compiler/singleLineCommentInConciseArrowFunctionES3.ts
Yuichi Nukiyama d48f6179f1 fix 8117
2016-04-19 12:50:50 +00:00

5 lines
84 B
TypeScript

function test() {
return () =>
// some comments here;
123;
}