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

5 lines
242 B
Plaintext

==== 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(); }