rust/src/test/run-pass/spawn-module-qualified.rs
Brian Anderson 07732545d2 Add xfail-stage3 directives to tests
The new test runners run stage 3
2011-07-22 10:18:28 -07:00

13 lines
164 B
Rust

// xfail-stage0
// xfail-stage1
// xfail-stage2
// xfail-stage3
fn main() {
auto x = spawn m::child(10);
join x;
}
mod m {
fn child(int i) {
log i;
}
}