rustc/tests/ui/parser/suggest_misplaced_generics/enum.fixed
2023-09-11 11:26:34 +02:00

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() {}