mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
7b667e7811
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
15 lines
308 B
Plaintext
15 lines
308 B
Plaintext
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)
|
|
|
|
|
LL - Struct Foor {
|
|
LL + struct Foor {
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|