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

15 lines
270 B
Rust
Raw Normal View History

// -*- rust -*-
use std;
import task;
import task::*;
2011-08-12 20:34:19 -05:00
fn main() {
let mut result = none;
task::task().future_result(|+r| { result = some(r); }).spawn(child);
2012-08-22 19:24:52 -05:00
error!("1");
yield();
2012-08-13 23:36:52 -05:00
future::get(&option::unwrap(result));
2011-08-12 20:34:19 -05:00
}
2012-08-22 19:24:52 -05:00
fn child() { error!("2"); }