blob: cd9b70323ff2e73871f899a689d36ecb642555e6 (
plain)
1
2
3
4
5
6
7
8
9
|
// 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() {}
|