rust/tests/fail/data_race/read_write_race.rs

29 lines
651 B
Rust
Raw Normal View History

2022-07-10 19:19:41 -05:00
// We want to control preemption here.
//@compile-flags: -Zmiri-preemption-rate=0
use std::thread::spawn;
#[derive(Copy, Clone)]
struct EvilSend<T>(pub T);
unsafe impl<T> Send for EvilSend<T> {}
unsafe impl<T> Sync for EvilSend<T> {}
pub fn main() {
let mut a = 0u32;
let b = &mut a as *mut u32;
let c = EvilSend(b);
unsafe {
2022-06-20 04:43:06 -05:00
let j1 = spawn(move || {
let _val = *c.0;
});
let j2 = spawn(move || {
*c.0 = 64; //~ ERROR: Data race detected between Write on thread `<unnamed>` and Read on thread `<unnamed>`
});
j1.join().unwrap();
j2.join().unwrap();
}
}