TypeScript/tests/cases/compiler/commentsAfterFunctionExpression1.ts

7 lines
113 B
TypeScript
Raw Normal View History

2016-03-29 21:48:53 +02:00
// @removeComments: false
var v = {
f: a => 0 /*t1*/,
g: (a => 0) /*t2*/,
h: (a => 0 /*t3*/)
}