about summary refs log tree commit diff
path: root/tests/ui/suggestions/missing-type-param-used-in-param.fixed
blob: 3763ce53007aa655377de5e347d1ee6e099174d7 (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 function takes 2 generic arguments
    two_type_params::<String, _>(100);
}