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

14 lines
202 B
Rust
Raw Normal View History

// -*- rust -*-
use std;
import task;
import task::*;
2011-08-12 20:34:19 -05:00
fn main() {
let other = task::spawn_joinable((), child);
#error("1");
yield();
join(other);
2011-08-12 20:34:19 -05:00
}
fn child(&&_i: ()) { #error("2"); }