2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(unused_must_use)]
|
|
|
|
#![allow(unused_mut)]
|
2016-02-11 12:34:41 +01:00
|
|
|
//@ ignore-emscripten no threads support
|
|
|
|
|
2015-03-30 11:00:05 -07:00
|
|
|
use std::thread;
|
2014-12-23 11:53:35 -08:00
|
|
|
use std::sync::mpsc::{channel, Sender};
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
fn start(tx: &Sender<Sender<String>>) {
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx2, rx) = channel();
|
2014-12-23 11:53:35 -08:00
|
|
|
tx.send(tx2).unwrap();
|
2011-07-18 12:02:26 -07:00
|
|
|
|
2012-03-22 08:39:41 -07:00
|
|
|
let mut a;
|
|
|
|
let mut b;
|
2014-12-23 11:53:35 -08:00
|
|
|
a = rx.recv().unwrap();
|
2015-06-07 21:00:38 +03:00
|
|
|
assert_eq!(a, "A".to_string());
|
2014-05-12 17:56:43 -07:00
|
|
|
println!("{}", a);
|
2014-12-23 11:53:35 -08:00
|
|
|
b = rx.recv().unwrap();
|
2015-06-07 21:00:38 +03:00
|
|
|
assert_eq!(b, "B".to_string());
|
2014-05-12 17:56:43 -07:00
|
|
|
println!("{}", b);
|
2010-08-11 15:05:33 -07:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx, rx) = channel();
|
2015-04-13 15:15:32 -07:00
|
|
|
let child = thread::spawn(move|| { start(&tx) });
|
2011-07-18 12:02:26 -07:00
|
|
|
|
2014-12-23 11:53:35 -08:00
|
|
|
let mut c = rx.recv().unwrap();
|
|
|
|
c.send("A".to_string()).unwrap();
|
|
|
|
c.send("B".to_string()).unwrap();
|
2015-03-30 11:00:05 -07:00
|
|
|
thread::yield_now();
|
2015-04-13 15:15:32 -07:00
|
|
|
|
|
|
|
child.join();
|
2011-08-06 10:07:39 -07:00
|
|
|
}
|