TypeScript/tests/cases/compiler/genericAndNonGenericInheritedSignature1.ts

9 lines
120 B
TypeScript
Raw Normal View History

2014-12-19 01:34:14 +01:00
interface Foo {
f(x: any): any;
}
interface Bar {
f<T>(x: T): T;
}
interface Hello extends Foo, Bar {
}