2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2016-02-11 11:34:41 +00:00
|
|
|
// ignore-emscripten no threads support
|
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::channel;
|
2015-02-17 23:24:34 +00:00
|
|
|
use std::thread;
|
2014-01-09 10:06:55 +00:00
|
|
|
|
2013-09-25 07:43:37 +00:00
|
|
|
pub fn main() {
|
2014-03-09 21:58:32 +00:00
|
|
|
let (tx, rx) = channel();
|
2013-06-27 23:53:40 +00:00
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
tx.send("hello, world").unwrap();
|
2014-06-03 19:38:00 +00:00
|
|
|
|
2015-02-17 23:24:34 +00:00
|
|
|
thread::spawn(move|| {
|
2015-04-10 18:12:43 +00:00
|
|
|
println!("{}", rx.recv().unwrap());
|
2014-12-22 17:04:23 +00:00
|
|
|
}).join().ok().unwrap();
|
2013-06-27 23:53:40 +00:00
|
|
|
}
|