about summary refs log tree commit diff
path: root/tests/ui/threads-sendsync/rc-is-not-send.rs
blob: dd562e9e8f34f5112d8e578180e9fdd8c4e97f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! Test that `Rc<T>` cannot be sent between threads.

use std::rc::Rc;
use std::thread;

#[derive(Debug)]
struct Port<T>(Rc<T>);

#[derive(Debug)]
struct Foo {
    _x: Port<()>,
}

impl Drop for Foo {
    fn drop(&mut self) {}
}

fn foo(x: Port<()>) -> Foo {
    Foo { _x: x }
}

fn main() {
    let x = foo(Port(Rc::new(())));

    thread::spawn(move || {
        //~^ ERROR `Rc<()>` cannot be sent between threads safely
        let y = x;
        println!("{:?}", y);
    });
}