summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/tls_access.rs
blob: 19344c868621264154043b78630c4c44837cb560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
    }
}