summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/suggest_misplaced_generics/fn-complex-generics.rs
blob: d0684397e744c4ecf908a4a7f59415c522f93744 (plain)
1
2
3
4
5
6
7
8
9
// Issue: 103366 , Suggest fix for misplaced generic params
// run-rustfix

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

fn main() {}