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

9 lines
249 B
Plaintext

==== tests/cases/compiler/unqualifiedCallToClassStatic1.ts (1 errors) ====
class Vector {
static foo = () => {
// 'foo' cannot be called in an unqualified manner.
foo();
~~~
!!! Cannot find name 'foo'.
}
}