rust/src/test/run-pass/spawn-module-qualified.rs
Marijn Haverbeke 3816e57fd2 Downcase std modules again, move to :: for module dereferencing
This should be a snapshot transition.
2011-05-12 21:30:44 +02:00

13 lines
148 B
Rust

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