blob: 1d4f9bf94c88aa31c9b1fd3cb7ac40fbdfeab1b0 [file] [log] [blame]
//@ run-rustfix
fn two_type_params<A, B>(_: B) {}
fn main() {
two_type_params::<String>(100); //~ ERROR function takes 2 generic arguments
two_type_params::<String, _>(100);
}