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

29 lines
853 B
Plaintext

tests/cases/compiler/autolift4.ts(19,70): error TS2339: Property 'm' does not exist on type 'Point3D'.
==== tests/cases/compiler/autolift4.ts (1 errors) ====
class Point {
constructor(public x: number, public y: number) {
}
getDist() {
return Math.sqrt(this.x*this.x + this.y*this.y);
}
static origin = new Point(0,0);
}
class Point3D extends Point {
constructor(x: number, y: number, public z: number, m:number) {
super(x, y);
}
getDist() {
return Math.sqrt(this.x*this.x + this.y*this.y + this.z*this.m);
~
!!! error TS2339: Property 'm' does not exist on type 'Point3D'.
}
}