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

26 lines
731 B
Plaintext

==== 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);
~
!!! Property 'm' does not exist on type 'Point3D'.
}
}