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

8 lines
138 B
TypeScript

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