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

22 lines
210 B
Rust
Raw Normal View History

// xfail-stage0
2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn main() {
auto other = spawn child();
log "1";
yield;
log "2";
yield;
log "3";
join other;
}
fn child() {
log "4";
yield;
log "5";
yield;
log "6";
}