2022-08-11 22:26:26 +08:00
|
|
|
error: expected item, found keyword `let`
|
|
|
|
|
--> $DIR/suggest-const-for-global-var.rs:1:1
|
|
|
|
|
|
|
|
|
|
|
LL | let X: i32 = 12;
|
2024-11-17 21:43:55 +00:00
|
|
|
| ^^^
|
|
|
|
|
| |
|
|
|
|
|
| `let` cannot be used for global variables
|
|
|
|
|
| help: consider using `static` or `const` instead of `let`
|
|
|
|
|
|
|
|
|
|
|
= note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
|
2022-08-11 22:26:26 +08:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-08-11 22:26:26 +08:00
|
|
|
|