=== tests/cases/compiler/superCallFromClassThatDerivesFromGenericType1.ts === declare class B { >B : B >T : T m(): B; >m : () => B >U : U >B : B >U : U static g(): B; >g : () => B >B : B } class D extends B { >D : D >B : B constructor() { super(); >super() : void >super : typeof B } }