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

27 lines
652 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/thisInSuperCall.ts (2 errors) ====
class Base {
constructor(x: any) {}
}
class Foo extends Base {
constructor() {
super(this); // no error
}
}
class Foo2 extends Base {
public p = 0;
constructor() {
super(this); // error
~~~~
!!! 'this' cannot be referenced in current location.
}
}
class Foo3 extends Base {
constructor(public p) {
super(this); // error
~~~~
!!! 'this' cannot be referenced in current location.
}
}