Closed
Description
class B<U, V>{
public method<G>(arg1: G, arg2: V): U {
return undefined;
}
}
var baz = new B<string, string>();
baz./*quickinfo*/method(true, 1);
At position /*quickinfo*/
, quick-info show method to be ...method<G>(arg1: G, arg2, string): string
expect ...method<boolean>(arg1: boolean, arg2, string): string