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

8 lines
96 B
TypeScript

interface I {
<T>(x: T): string;
}
interface I2 extends I {
<T>(x: T): void;
}