TypeScript/tests/baselines/reference/typeOfThisInConstructorParamList.errors.txt

12 lines
555 B
Text
Raw Normal View History

tests/cases/conformance/expressions/thisKeyword/typeOfThisInConstructorParamList.ts(4,21): error TS2333: 'this' cannot be referenced in constructor arguments.
2014-07-13 01:04:16 +02:00
==== 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) { }
~~~~
!!! error TS2333: 'this' cannot be referenced in constructor arguments.
2014-07-13 01:04:16 +02:00
}