summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-type-param-used-in-param.rs
blob: 19286331b60232d7c21cdf485310beab74d9eda1 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

fn two_type_params<A, B>(_: B) {}

fn main() {
    two_type_params::<String>(100); //~ ERROR this function takes 2 generic arguments
    two_type_params::<String, _>(100);
}