TypeScript/tests/baselines/reference/pinnedComments1.js
2015-12-08 17:51:10 -08:00

22 lines
332 B
TypeScript

//// [pinnedComments1.ts]
/*!=========
Keep this pinned comment
=========
*/
/* unpinned comment */
/*! pinned comment that need to be removed */
class C {
}
//// [pinnedComments1.js]
/*!=========
Keep this pinned comment
=========
*/
var C = (function () {
function C() {
}
return C;
}());