mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 08:49:44 +00:00
10 lines
240 B
Rust
10 lines
240 B
Rust
// Issue: 103366 , Suggest fix for misplaced generic params
|
|
//@ run-rustfix
|
|
|
|
#[allow(unused)]
|
|
enum<T> Foo { Variant(T) }
|
|
//~^ ERROR expected identifier, found `<`
|
|
//~| HELP place the generic parameter name after the enum name
|
|
|
|
fn main() {}
|