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

33 lines
906 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
~~~~
!!! 'this' cannot be referenced in current location.
}
}
class Derived3 extends Base {
constructor(public a: string) {
super(() => this); // error
~~~~
!!! 'this' cannot be referenced in current location.
}
}
class Derived4 extends Base {
constructor(public a: string) {
super(function () { return this; }); // ok
}
}