mirror of https://github.com/rust-lang/rust
14 lines
307 B
Plaintext
14 lines
307 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 difference)
|
|
|
|
|
LL | struct Foor {
|
|
| ~~~~~~
|
|
|
|
error: aborting due to 1 previous error
|
|
|