rust/src/test/run-pass/lazychan.rs

24 lines
394 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
use std;
import std::task;
import std::comm::*;
2011-04-19 15:35:49 -05:00
fn main() {
let p = mk_port();
2011-07-27 07:19:39 -05:00
let y: int;
2010-06-23 23:03:09 -05:00
task::_spawn(bind child(p.mk_chan()));
y = p.recv();
2011-07-27 07:19:39 -05:00
log "received 1";
log y;
assert (y == 10);
2010-06-23 23:03:09 -05:00
task::_spawn(bind child(p.mk_chan()));
y = p.recv();
2011-07-27 07:19:39 -05:00
log "received 2";
log y;
assert (y == 10);
2010-06-23 23:03:09 -05:00
}
fn child(c: _chan[int]) { send(c, 10); }