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
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
use std::sync::mpsc::channel;
|
2015-02-17 23:24:34 +00:00
|
|
|
use std::thread;
|
2013-05-25 02:35:29 +00:00
|
|
|
|
2013-03-27 16:58:28 +00:00
|
|
|
pub fn main() {
|
2014-03-09 21:58:32 +00:00
|
|
|
let (tx, rx) = channel::<&'static str>();
|
2013-03-05 03:33:51 +00:00
|
|
|
|
2015-02-17 23:24:34 +00:00
|
|
|
let t = thread::spawn(move|| {
|
2014-12-23 19:53:35 +00:00
|
|
|
assert_eq!(rx.recv().unwrap(), "hello, world");
|
2014-01-27 23:29:50 +00:00
|
|
|
});
|
2013-03-05 03:33:51 +00:00
|
|
|
|
2014-12-23 19:53:35 +00:00
|
|
|
tx.send("hello, world").unwrap();
|
|
|
|
t.join().ok().unwrap();
|
2013-03-05 03:33:51 +00:00
|
|
|
}
|