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

11 lines
293 B
Plaintext

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