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

14 lines
418 B
Plaintext

tests/cases/compiler/propertyOrdering2.ts(5,21): error TS2339: Property 'y' does not exist on type 'Foo'.
==== tests/cases/compiler/propertyOrdering2.ts (1 errors) ====
class Foo {
constructor(public x, y) { }
foo() {
var a = this.x;
return this.y;
~
!!! error TS2339: Property 'y' does not exist on type 'Foo'.
}
}