summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/miri_unleashed/tls.rs
blob: 7d4f8962a192c3da552b31d97d5e375539050094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// compile-flags: -Zunleash-the-miri-inside-of-you
#![feature(thread_local)]
#![allow(const_err)]

use std::thread;

#[thread_local]
static A: u8 = 0;

// Make sure we catch accessing thread-local storage.
static TEST_BAD: () = {
    unsafe { let _val = A; }
    //~^ ERROR could not evaluate static initializer
    //~| NOTE cannot access thread local static
};

// Make sure we catch taking a reference to thread-local storage.
static TEST_BAD_REF: () = {
    unsafe { let _val = &A; }
    //~^ ERROR could not evaluate static initializer
    //~| NOTE cannot access thread local static
};

fn main() {}