TypeScript/tests/cases/compiler/commentsAfterFunctionExpression1.ts
Anton Tolmachev 7ce43d4716 Fix #7101
2016-03-29 22:53:30 +03:00

7 lines
113 B
TypeScript

// @removeComments: false
var v = {
f: a => 0 /*t1*/,
g: (a => 0) /*t2*/,
h: (a => 0 /*t3*/)
}