TypeScript/tests/baselines/reference/superWithTypeArgument.errors.txt
2014-09-11 16:11:08 -07:00

14 lines
408 B
Plaintext

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