TypeScript/tests/cases/compiler/classExtendsInterfaceThatExtendsClassWithPrivates1.ts
2014-07-12 17:30:19 -07:00

14 lines
245 B
TypeScript

class C {
public foo(x: any) { return x; }
private x = 1;
}
interface I extends C {
other(x: any): any;
}
class D2 implements I {
public foo(x: any) { return x }
private x = 3;
other(x: any) { return x }
}