TypeScript/tests/baselines/reference/superInConstructorParam1.errors.txt
2014-09-12 13:35:07 -07:00

20 lines
727 B
Plaintext

tests/cases/compiler/superInConstructorParam1.ts(8,3): error TS2377: Constructors for derived classes must contain a 'super' call.
tests/cases/compiler/superInConstructorParam1.ts(8,19): error TS2336: 'super' cannot be referenced in constructor arguments.
==== tests/cases/compiler/superInConstructorParam1.ts (2 errors) ====
class B {
public foo(): number {
return 0;
}
}
class C extends B {
constructor(a = super.foo()) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~
!!! error TS2336: 'super' cannot be referenced in constructor arguments.
}
~~~
!!! error TS2377: Constructors for derived classes must contain a 'super' call.
}