10 lines
237 B
Rust
10 lines
237 B
Rust
|
// Issue: 103366 , Suggest fix for misplaced generic params
|
||
|
//@ run-rustfix
|
||
|
|
||
|
#[allow(unused)]
|
||
|
fn id<T>(x: T) -> T { x }
|
||
|
//~^ ERROR expected identifier, found `<`
|
||
|
//~| HELP place the generic parameter name after the fn name
|
||
|
|
||
|
fn main() {}
|