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