mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
10 lines
236 B
Rust
10 lines
236 B
Rust
// 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() {}
|