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

#[allow(unused)]
fn<T> id(x: T) -> T { x }
//~^ ERROR expected identifier, found `<`
//~| HELP place the generic parameter name after the fn name

fn main() {}