blob: ba86a554bbb68615043c8a9b5be888f9cdf0c3bb [file] [log] [blame]
// 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
};
fn main() {}