2011-05-31 19:44:54 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import task;
|
|
|
|
import task::*;
|
2011-05-31 19:44:54 -05:00
|
|
|
|
2011-08-12 20:34:19 -05:00
|
|
|
fn main() {
|
2012-07-23 18:58:47 -05:00
|
|
|
let mut result = none;
|
2012-08-07 13:26:03 -05:00
|
|
|
task::task().future_result(|+r| { result = some(r); }).spawn(child);
|
2012-08-22 19:24:52 -05:00
|
|
|
error!("1");
|
2011-08-19 17:16:48 -05:00
|
|
|
yield();
|
2012-08-13 23:36:52 -05:00
|
|
|
future::get(&option::unwrap(result));
|
2011-08-12 20:34:19 -05:00
|
|
|
}
|
2011-05-31 19:44:54 -05:00
|
|
|
|
2012-08-22 19:24:52 -05:00
|
|
|
fn child() { error!("2"); }
|