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

12 lines
431 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers2.ts (2 errors) ====
class C {
static foo = this; // error
~~~~
!!! 'this' cannot be referenced in a static property initializer.
}
class C2<T> {
static foo = this; // error
~~~~
!!! 'this' cannot be referenced in a static property initializer.
}