mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 13:32:19 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
// Regression test for issue #47053
|
|
|
|
#![feature(thread_local)]
|
|
|
|
#[thread_local]
|
|
static FOO: isize = 5;
|
|
|
|
fn main() {
|
|
FOO = 6; //~ ERROR cannot assign to immutable static item `FOO` [E0594]
|
|
}
|