about summary refs log tree commit diff
path: root/tests/ui/parser/suggest_misplaced_generics/fn-complex-generics.fixed
blob: 311be359fe9319c627f9901280bce3a8e2603f34 (plain)
1
2
3
4
5
6
7
8
9
// Issue: 103366 , Suggest fix for misplaced generic params
//@ run-rustfix

#[allow(unused)]
fn f<'a, B: 'a + std::ops::Add<Output = u32>>(_x: B) { }
//~^ ERROR expected identifier, found `<`
//~| HELP place the generic parameter name after the fn name

fn main() {}