TypeScript/tests/cases/compiler/commentOnBinaryOperator2.ts

13 lines
181 B
TypeScript
Raw Normal View History

// @removeComments: true
var a = 'some'
// comment
+ 'text';
var b = 'some'
/* comment */
+ 'text';
var c = 'some'
/* comment */
+ /*comment1*/
'text';