TypeScript/tests/cases/compiler/commentOnInterface1.ts

18 lines
265 B
TypeScript

//@filename: a.ts
/*!=================
Keep this pinned
=================
*/
/*! Don't keep this pinned comment */
interface I {
}
// Don't keep this comment.
interface I2 {
}
//@filename: b.ts
///<reference path='a.ts'/>
interface I3 {
}