TypeScript/tests/cases/compiler/propertyOrdering2.ts
2014-07-12 17:30:19 -07:00

8 lines
122 B
TypeScript

class Foo {
constructor(public x, y) { }
foo() {
var a = this.x;
return this.y;
}
}