==== tests/cases/compiler/superWithTypeArgument2.ts (2 errors) ==== class C { foo: T; } class D extends C { constructor(x) { super(x); ~ !!! 'super' must be followed by argument list or member access. ~~~~~~~~~~~ !!! Supplied parameters do not match any signature of call target. } }