=== tests/cases/compiler/genericCallWithFixedArguments.ts === class A { foo() { } } >A : A >foo : () => void class B { bar() { }} >B : B >bar : () => void function g(x) { } >g : (x: any) => void >T : T >U : U >x : any g(7) // the parameter list is fixed, so this should not error >g(7) : void >g : (x: any) => void >A : A >B : B >7 : number