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

14 lines
264 B
Rust
Raw Normal View History

// -*- rust -*-
extern mod std;
2012-09-05 14:32:05 -05:00
use task::*;
2011-08-12 20:34:19 -05:00
fn main() {
2012-08-20 14:23:37 -05:00
let mut result = None;
2012-09-19 00:45:24 -05:00
task::task().future_result(|+r| { result = Some(move r); }).spawn(child);
2012-08-22 19:24:52 -05:00
error!("1");
yield();
option::unwrap(move result).recv();
2011-08-12 20:34:19 -05:00
}
2012-08-22 19:24:52 -05:00
fn child() { error!("2"); }