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

12 lines
373 B
Plaintext
Raw Normal View History

tests/cases/compiler/staticOffOfInstance1.ts(3,10): error TS2339: Property 'Foo' does not exist on type 'List'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/staticOffOfInstance1.ts (1 errors) ====
class List {
public Blah() {
this.Foo();
~~~
!!! error TS2339: Property 'Foo' does not exist on type 'List'.
2014-07-13 01:04:16 +02:00
}
public static Foo() {}
}