2023-01-22 17:16:39 +11:00

11 lines
261 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
//~| SUGGESTION Foo<T>
fn main() {}