swc/crates/swc_ecma_parser/tests/tsc/classDoesNotDependOnPrivateMember.ts

7 lines
102 B
TypeScript
Raw Normal View History

//@declaration: true
module M {
interface I { }
export class C {
private x: I;
}
}