2020-06-01 13:53:45 -05:00
|
|
|
//@ compile-flags: -Zunleash-the-miri-inside-of-you
|
|
|
|
#![feature(thread_local)]
|
|
|
|
|
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
#[thread_local]
|
|
|
|
static A: u8 = 0;
|
|
|
|
|
2020-06-01 17:55:11 -05:00
|
|
|
// Make sure we catch accessing thread-local storage.
|
2020-06-01 13:53:45 -05:00
|
|
|
static TEST_BAD: () = {
|
|
|
|
unsafe { let _val = A; }
|
|
|
|
//~^ ERROR could not evaluate static initializer
|
|
|
|
//~| NOTE cannot access thread local static
|
|
|
|
};
|
|
|
|
|
2020-07-26 04:12:22 -05:00
|
|
|
// Make sure we catch taking a reference to thread-local storage.
|
2024-02-10 08:41:08 -06:00
|
|
|
// The actual pointer depends on the thread, so even just taking a reference already does not make
|
|
|
|
// sense at compile-time.
|
2020-07-26 04:12:22 -05:00
|
|
|
static TEST_BAD_REF: () = {
|
|
|
|
unsafe { let _val = &A; }
|
|
|
|
//~^ ERROR could not evaluate static initializer
|
|
|
|
//~| NOTE cannot access thread local static
|
|
|
|
};
|
|
|
|
|
2020-06-01 13:53:45 -05:00
|
|
|
fn main() {}
|