rust/tests/ui/parser/suggest_misplaced_generics/trait.rs
2023-02-01 18:11:37 +11:00

12 lines
239 B
Rust

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