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

4 lines
62 B
TypeScript

class Foo {
public y;
constructor(x = this.y) { }
}