1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
tests/cases/compiler/superPropertyAccess2.ts(13,15): error TS2339: Property 'x' does not exist on type 'typeof C'.
tests/cases/compiler/superPropertyAccess2.ts(18,15): error TS2576: Property 'bar' does not exist on type 'C'. Did you mean to access the static member 'C.bar' instead?
tests/cases/compiler/superPropertyAccess2.ts(19,15): error TS2340: Only public and protected methods of the base class are accessible via the 'super' keyword.
tests/cases/compiler/superPropertyAccess2.ts(24,15): error TS2339: Property 'x' does not exist on type 'typeof C'.
==== tests/cases/compiler/superPropertyAccess2.ts (4 errors) ====
class C {
public static foo() { }
public get x() {
return 1;
}
public static bar() { }
}
class D extends C {
public static foo() {
super.bar(); // OK
super.x; // error
~
!!! error TS2339: Property 'x' does not exist on type 'typeof C'.
}
constructor() {
super();
super.bar(); // error
~~~
!!! error TS2576: Property 'bar' does not exist on type 'C'. Did you mean to access the static member 'C.bar' instead?
super.x; // error
~
!!! error TS2340: Only public and protected methods of the base class are accessible via the 'super' keyword.
}
public static get y() {
super.bar(); // OK
super.x; // error
~
!!! error TS2339: Property 'x' does not exist on type 'typeof C'.
return 1;
}
}
|