TypeScript/tests/baselines/reference/typeOfThisInConstructorParamList.errors.txt
2014-07-12 17:30:19 -07:00

9 lines
377 B
Plaintext

==== tests/cases/conformance/expressions/thisKeyword/typeOfThisInConstructorParamList.ts (1 errors) ====
//type of 'this' in constructor param list is the class instance type (error)
class ErrClass {
// Should be an error
constructor(f = this) { }
~~~~
!!! 'this' cannot be referenced in constructor arguments.
}