mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
7b667e7811
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
15 lines
302 B
Plaintext
15 lines
302 B
Plaintext
error: expected one of `!` or `::`, found `a`
|
|
--> $DIR/static.rs:1:8
|
|
|
|
|
LL | Static a = 0;
|
|
| ^ expected one of `!` or `::`
|
|
|
|
|
help: write keyword `static` in lowercase (notice the capitalization)
|
|
|
|
|
LL - Static a = 0;
|
|
LL + static a = 0;
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|