==== tests/cases/compiler/tooManyTypeParameters1.ts (4 errors) ==== function f() { } f(); ~~~~~~~~~~~~~~~~~~~ !!! Supplied parameters do not match any signature of call target. var x = () => {}; x(); ~~~~~~~~~~~~~~~~~~ !!! Supplied parameters do not match any signature of call target. class C {} var c = new C(); ~~~~~~~~~~~~~~~~~~ !!! Supplied parameters do not match any signature of call target. interface I {} var i: I; ~~~~~~~~~~~~~~~~ !!! Generic type 'I' requires 1 type argument(s).