2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2016-02-11 11:34:41 +00:00
|
|
|
// ignore-emscripten no threads support
|
2015-03-22 20:13:15 +00:00
|
|
|
|
2018-07-23 02:14:42 +00:00
|
|
|
#![feature(box_syntax)]
|
2015-01-08 01:25:56 +00:00
|
|
|
|
2015-03-30 18:00:05 +00:00
|
|
|
use std::thread;
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::channel;
|
2013-01-29 07:54:39 +00:00
|
|
|
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2015-03-26 00:06:52 +00:00
|
|
|
let (tx, rx) = channel::<usize>();
|
2012-01-08 21:32:40 +00:00
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
let x: Box<isize> = box 1;
|
|
|
|
let x_in_parent = &(*x) as *const isize as usize;
|
2012-01-08 21:32:40 +00:00
|
|
|
|
2015-04-13 22:15:32 +00:00
|
|
|
let t = thread::spawn(move || {
|
2015-03-26 00:06:52 +00:00
|
|
|
let x_in_child = &(*x) as *const isize as usize;
|
2014-12-23 19:53:35 +00:00
|
|
|
tx.send(x_in_child).unwrap();
|
2012-01-08 21:32:40 +00:00
|
|
|
});
|
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
let x_in_child = rx.recv().unwrap();
|
2013-05-19 02:02:45 +00:00
|
|
|
assert_eq!(x_in_parent, x_in_child);
|
2015-04-13 22:15:32 +00:00
|
|
|
|
|
|
|
t.join();
|
2012-01-08 21:32:40 +00:00
|
|
|
}
|