2015-02-17 17:10:25 -06:00
|
|
|
use std::thread;
|
2014-10-02 00:10:09 -05:00
|
|
|
use std::rc::Rc;
|
2013-02-25 16:04:32 -06:00
|
|
|
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Debug)]
|
2014-10-02 00:10:09 -05:00
|
|
|
struct Port<T>(Rc<T>);
|
2013-01-29 01:54:39 -06:00
|
|
|
|
2012-06-19 19:28:29 -05:00
|
|
|
fn main() {
|
2015-01-28 07:34:18 -06:00
|
|
|
#[derive(Debug)]
|
2018-12-16 21:21:47 -06:00
|
|
|
struct Foo {
|
2013-01-29 01:54:39 -06:00
|
|
|
_x: Port<()>,
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
impl Drop for Foo {
|
2013-09-16 20:18:07 -05:00
|
|
|
fn drop(&mut self) {}
|
2012-06-22 15:11:29 -05:00
|
|
|
}
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
fn foo(x: Port<()>) -> Foo {
|
|
|
|
Foo {
|
2012-09-05 17:58:43 -05:00
|
|
|
_x: x
|
|
|
|
}
|
|
|
|
}
|
2013-01-10 12:59:58 -06:00
|
|
|
|
2014-10-02 00:10:09 -05:00
|
|
|
let x = foo(Port(Rc::new(())));
|
2012-06-19 19:28:29 -05:00
|
|
|
|
2015-02-17 17:10:25 -06:00
|
|
|
thread::spawn(move|| {
|
2020-09-02 02:40:56 -05:00
|
|
|
//~^ ERROR `Rc<()>` cannot be sent between threads safely
|
2014-11-26 07:12:18 -06:00
|
|
|
let y = x;
|
2014-12-20 02:09:35 -06:00
|
|
|
println!("{:?}", y);
|
2014-01-27 17:29:50 -06:00
|
|
|
});
|
2012-06-19 19:28:29 -05:00
|
|
|
}
|