rust/tests/ui/parser/suggest_misplaced_generics/struct.fixed
2024-02-16 20:02:50 +00:00

10 lines
238 B
Rust

// Issue: 103366 , Suggest fix for misplaced generic params
//@ run-rustfix
#[allow(unused)]
struct Foo<T> { x: T }
//~^ ERROR expected identifier, found `<`
//~| HELP place the generic parameter name after the struct name
fn main() {}