rustc/tests/ui/parser/suggest_misplaced_generics/trait.fixed
2024-06-21 09:39:33 +02:00

12 lines
240 B
Plaintext

// 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
}
fn main() {}