mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
245 B
Rust
16 lines
245 B
Rust
// skip-filecheck
|
|
// EMIT_MIR tls_access.main.PreCodegen.after.mir
|
|
// compile-flags: -Zmir-opt-level=0
|
|
|
|
#![feature(thread_local)]
|
|
|
|
#[thread_local]
|
|
static mut FOO: u8 = 3;
|
|
|
|
fn main() {
|
|
unsafe {
|
|
let a = &FOO;
|
|
FOO = 42;
|
|
}
|
|
}
|