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

33 lines
934 B
Plaintext

==== tests/cases/conformance/classes/constructorDeclarations/superCalls/derivedClassSuperCallsWithThisArg.ts (2 errors) ====
class Base {
x: string;
constructor(a) { }
}
class Derived extends Base {
constructor() {
super(this); // ok
}
}
class Derived2 extends Base {
constructor(public a: string) {
super(this); // error
~~~~
!!! error TS2332: 'this' cannot be referenced in current location.
}
}
class Derived3 extends Base {
constructor(public a: string) {
super(() => this); // error
~~~~
!!! error TS2332: 'this' cannot be referenced in current location.
}
}
class Derived4 extends Base {
constructor(public a: string) {
super(function () { return this; }); // ok
}
}