=== tests/cases/compiler/genericSignatureInheritance.ts === interface I { >I : I (x: T): string; >T : T >x : T >T : T } interface I2 extends I { } >I2 : I2 >I : I