rust/tests/ui/parser/suggest_misplaced_generics/trait.fixed
2023-01-22 17:16:39 +11:00

13 lines
267 B
Rust

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