rust/src/test/run-pass/obj-dtor.rs

34 lines
642 B
Rust
Raw Normal View History

// xfail-stage0
2010-06-23 21:03:09 -07:00
obj worker(chan[int] c) {
drop {
log "in dtor";
c <| 10;
}
}
impure fn do_work(chan[int] c) {
2010-06-23 21:03:09 -07:00
log "in child task";
{
let worker w = worker(c);
log "constructed worker";
}
log "destructed worker";
while(true) {
// Deadlock-condition not handled properly yet, need to avoid
// exiting the child early.
c <| 11;
yield;
}
}
impure fn main() {
2010-06-23 21:03:09 -07:00
let port[int] p = port();
log "spawning worker";
auto w = spawn do_work(chan(p));
let int i;
log "parent waiting for shutdown";
i <- p;
log "received int";
check (i == 10);
log "int is OK, child-dtor ran as expected";
}