TypeScript/tests/baselines/reference/commentOnInterface1.types
2015-04-15 16:44:20 -07:00

17 lines
249 B
Plaintext

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