TypeScript/tests/cases/compiler/singleLineCommentInConciseArrowFunctionES3.ts

5 lines
84 B
TypeScript
Raw Normal View History

2016-04-19 14:50:50 +02:00
function test() {
return () =>
// some comments here;
123;
}