rust/tests/ui/parser/misspelled-keywords/struct.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
307 B
Plaintext
Raw Normal View History

2024-09-02 02:27:43 +00:00
error: expected one of `!` or `::`, found `Foor`
--> $DIR/struct.rs:1:8
|
LL | Struct Foor {
| ^^^^ expected one of `!` or `::`
|
help: write keyword `struct` in lowercase (notice the capitalization difference)
|
LL | struct Foor {
| ~~~~~~
2024-09-02 02:27:43 +00:00
error: aborting due to 1 previous error