TypeScript/tests/cases/conformance/declarationEmit/classDoesNotDependOnPrivateMember.ts

7 lines
108 B
TypeScript
Raw Normal View History

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