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

14 lines
287 B
Plaintext

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