TypeScript/tests/baselines/reference/superWithTypeArgument2.errors.txt

14 lines
394 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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.
}
}