mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 00:06:56 +00:00
10 lines
268 B
Plaintext
10 lines
268 B
Plaintext
// 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() {}
|