TypeScript/tests/baselines/reference/thisInConstructorParameter1.errors.txt
2014-09-11 16:11:08 -07:00

7 lines
255 B
Plaintext

==== tests/cases/compiler/thisInConstructorParameter1.ts (1 errors) ====
class Foo {
public y;
constructor(x = this.y) { }
~~~~
!!! error TS2333: 'this' cannot be referenced in constructor arguments.
}