blob: 3763ce53007aa655377de5e347d1ee6e099174d7 [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);
}