mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 05:12:26 +00:00
8 lines
138 B
Rust
8 lines
138 B
Rust
const
|
|
mut //~ ERROR: const globals cannot be mutable
|
|
//~^^ HELP you might want to declare a static instead
|
|
FOO: usize = 3;
|
|
|
|
fn main() {
|
|
}
|