2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_must_use)]
|
2016-02-11 12:34:41 +01:00
|
|
|
// ignore-emscripten no threads support
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-03-30 11:00:05 -07:00
|
|
|
use std::thread;
|
2014-12-23 11:53:35 -08:00
|
|
|
use std::sync::mpsc::channel;
|
2013-01-28 23:54:39 -08:00
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2015-03-25 17:06:52 -07:00
|
|
|
let (tx, rx) = channel::<usize>();
|
2012-01-08 13:32:40 -08:00
|
|
|
|
2021-08-25 02:39:40 +02:00
|
|
|
let x: Box<isize> = Box::new(1);
|
2015-03-25 17:06:52 -07:00
|
|
|
let x_in_parent = &(*x) as *const isize as usize;
|
2012-01-08 13:32:40 -08:00
|
|
|
|
2015-04-13 15:15:32 -07:00
|
|
|
let t = thread::spawn(move || {
|
2015-03-25 17:06:52 -07:00
|
|
|
let x_in_child = &(*x) as *const isize as usize;
|
2014-12-23 11:53:35 -08:00
|
|
|
tx.send(x_in_child).unwrap();
|
2012-01-08 13:32:40 -08:00
|
|
|
});
|
|
|
|
|
2014-12-23 11:53:35 -08:00
|
|
|
let x_in_child = rx.recv().unwrap();
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(x_in_parent, x_in_child);
|
2015-04-13 15:15:32 -07:00
|
|
|
|
|
|
|
t.join();
|
2012-01-08 13:32:40 -08:00
|
|
|
}
|