Files
rust/tests/ui/parser/misspelled-keywords/static.stderr
T
2025-07-31 13:55:59 +08:00

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