mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
285 B
Rust
10 lines
285 B
Rust
// Issue: 103366
|
|
// there is already an existing generic on f, so don't show a suggestion
|
|
|
|
#[allow(unused)]
|
|
fn<'a, B: 'a + std::ops::Add<Output = u32>> f<T>(_x: B) { }
|
|
//~^ ERROR expected identifier, found `<`
|
|
//~| HELP place the generic parameter name after the fn name
|
|
|
|
fn main() {}
|