19 lines
229 B
Rust
19 lines
229 B
Rust
// xfail-stage0
|
|
// xfail-stage1
|
|
// xfail-stage2
|
|
// -*- rust -*-
|
|
|
|
fn main() {
|
|
let int i = 10;
|
|
while (i > 0) {
|
|
spawn thread "child" child(i);
|
|
i = i - 1;
|
|
}
|
|
log "main thread exiting";
|
|
}
|
|
|
|
fn child(int x) {
|
|
log x;
|
|
}
|
|
|