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