mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 02:25:51 +00:00
10 lines
239 B
Plaintext
10 lines
239 B
Plaintext
// 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() {}
|