2011-09-09 15:25:06 -05:00
|
|
|
// xfail-win32
|
2011-09-07 19:01:24 -05:00
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import task;
|
|
|
|
import comm;
|
2011-09-07 19:01:24 -05:00
|
|
|
|
|
|
|
resource complainer(c: comm::chan<bool>) {
|
|
|
|
comm::send(c, true);
|
|
|
|
}
|
|
|
|
|
2011-10-20 22:34:04 -05:00
|
|
|
fn f(c: comm::chan<bool>) {
|
2011-09-07 19:01:24 -05:00
|
|
|
task::unsupervise();
|
|
|
|
let c <- complainer(c);
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let p = comm::port();
|
|
|
|
let c = comm::chan(p);
|
2012-01-04 23:14:53 -06:00
|
|
|
task::spawn {|| f(c); };
|
2011-09-07 19:01:24 -05:00
|
|
|
assert comm::recv(p);
|
|
|
|
}
|