rust/tests/ui/threads-sendsync/clone-with-exterior.rs
2023-01-11 09:32:08 +00:00

21 lines
316 B
Rust

// run-pass
#![allow(unused_must_use)]
// ignore-emscripten no threads support
use std::thread;
struct Pair {
a: isize,
b: isize
}
pub fn main() {
let z: Box<_> = Box::new(Pair { a : 10, b : 12});
thread::spawn(move|| {
assert_eq!(z.a, 10);
assert_eq!(z.b, 12);
}).join();
}