==== tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorDefaultValuesReferencingThis.ts (3 errors) ==== class C { constructor(x = this) { } ~~~~ !!! 'this' cannot be referenced in constructor arguments. } class D { constructor(x = this) { } ~~~~ !!! 'this' cannot be referenced in constructor arguments. } class E { constructor(public x = this) { } ~~~~ !!! 'this' cannot be referenced in constructor arguments. }