mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
26 lines
711 B
Rust
26 lines
711 B
Rust
//@ compile-flags: -Zunleash-the-miri-inside-of-you
|
|
#![feature(thread_local)]
|
|
|
|
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.
|
|
// The actual pointer depends on the thread, so even just taking a reference already does not make
|
|
// sense at compile-time.
|
|
static TEST_BAD_REF: () = {
|
|
unsafe { let _val = &A; }
|
|
//~^ ERROR could not evaluate static initializer
|
|
//~| NOTE cannot access thread local static
|
|
};
|
|
|
|
fn main() {}
|