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

14 lines
394 B
Plaintext

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