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

12 lines
431 B
Plaintext

==== 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.
}