// ignore-windows: Concurrency on Windows is not supported yet. // compile-flags: -Zmiri-disable-isolation use std::thread::{spawn, sleep}; use std::time::Duration; use std::mem; #[derive(Copy, Clone)] struct EvilSend(pub T); unsafe impl Send for EvilSend {} unsafe impl Sync for EvilSend {} fn main() { let mut a = 0u32; let b = &mut a as *mut u32; let c = EvilSend(b); let join = unsafe { spawn(move || { *c.0 = 32; }) }; // Detach the thread and sleep until it terminates mem::drop(join); sleep(Duration::from_millis(200)); // Spawn and immediately join a thread // to execute the join code-path // and ensure that data-race detection // remains enabled nevertheless. spawn(|| ()).join().unwrap(); let join2 = unsafe { spawn(move || { *c.0 = 64; //~ ERROR Data race detected between Write on Thread(id = 3) and Write on Thread(id = 1) }) }; join2.join().unwrap(); }