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