TypeScript/tests/baselines/reference/superWithTypeArgument.errors.txt
2014-07-12 17:30:19 -07:00

14 lines
377 B
Plaintext

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