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() {
|
2011-10-13 23:23:07 -05:00
|
|
|
let other = task::spawn_joinable((), child);
|
2011-12-22 16:42:52 -06:00
|
|
|
#error("1");
|
2011-08-19 17:16:48 -05:00
|
|
|
yield();
|
2011-08-25 13:20:43 -05:00
|
|
|
join(other);
|
2011-08-12 20:34:19 -05:00
|
|
|
}
|
2011-05-31 19:44:54 -05:00
|
|
|
|
2011-12-22 16:42:52 -06:00
|
|
|
fn child(&&_i: ()) { #error("2"); }
|