mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
240 B
Rust
12 lines
240 B
Rust
// Issue: 103366 , Suggest fix for misplaced generic params
|
|
//@ run-rustfix
|
|
|
|
#[allow(unused)]
|
|
trait<T> Foo {
|
|
//~^ ERROR expected identifier, found `<`
|
|
//~| HELP place the generic parameter name after the trait name
|
|
}
|
|
|
|
|
|
fn main() {}
|