TypeScript/tests/cases/compiler/doNotEmitPinnedDetachedComments.ts

33 lines
334 B
TypeScript

// @removeComments: true
var x = 10;
/*! Single Line comment */
function baz() { }
/*!
multi-line comment
*/
//========================
function bar() {
/*!
Remove this comment
*/
}
function foo() {
/*! Remove this */
return 0;
}
//========================