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

14 lines
267 B
Plaintext

error: expected identifier, found `<`
--> $DIR/trait.rs:5:6
|
LL | trait<T> Foo {
| ^ expected identifier
|
help: place the generic parameter name after the trait name
|
LL | trait Foo<T> {
| ~~~~~~
error: aborting due to previous error