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

11 lines
306 B
Plaintext

==== tests/cases/compiler/staticOffOfInstance2.ts (1 errors) ====
class List<T> {
public Blah() {
this.Foo(); // no error
~~~
!!! Property 'Foo' does not exist on type 'List<T>'.
List.Foo();
}
public static Foo() { }
}