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

12 lines
366 B
Plaintext
Raw Normal View History

tests/cases/compiler/unqualifiedCallToClassStatic1.ts(4,3): error TS2304: Cannot find name 'foo'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/unqualifiedCallToClassStatic1.ts (1 errors) ====
class Vector {
static foo = () => {
// 'foo' cannot be called in an unqualified manner.
foo();
~~~
!!! error TS2304: Cannot find name 'foo'.
2014-07-13 01:04:16 +02:00
}
}