about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync/clone-with-exterior.rs
blob: 9d5ac4b16aa6696227c66f36e02c6543190d2b7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//@ run-pass

#![allow(unused_must_use)]
//@ needs-threads

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();
}