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

5 lines
242 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/invalidStaticField.ts (1 errors) ====
class A { foo() { return B.NULL; } }
~~~~
!!! Property 'NULL' does not exist on type 'typeof B'.
class B { static NOT_NULL = new B(); }