mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
error: keyword `struct` is written in the wrong case
|
|
--> $DIR/struct.rs:1:1
|
|
|
|
|
LL | Struct Foor {
|
|
| ^^^^^^
|
|
|
|
|
help: write it in lowercase (notice the capitalization)
|
|
|
|
|
LL - Struct Foor {
|
|
LL + struct Foor {
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|