==== tests/cases/compiler/typeParameterExplicitlyExtendsAny.ts (3 errors) ==== function fee() { var t: T; t.blah; // Error ~~~~ !!! Property 'blah' does not exist on type 'T'. t.toString; // ok } function fee2() { var t: T; t.blah; // Error ~~~~ !!! Property 'blah' does not exist on type 'T'. t.toString; // ok ~~~~~~~~ !!! Property 'toString' does not exist on type 'T'. }