TypeScript/tests/baselines/reference/staticOffOfInstance1.errors.txt
2014-09-11 16:11:08 -07:00

9 lines
256 B
Plaintext

==== tests/cases/compiler/staticOffOfInstance1.ts (1 errors) ====
class List {
public Blah() {
this.Foo();
~~~
!!! error TS2339: Property 'Foo' does not exist on type 'List'.
}
public static Foo() {}
}