2011-05-03 20:13:51 -05:00
|
|
|
// xfail-stage1
|
|
|
|
// xfail-stage2
|
2011-07-20 21:37:09 -05:00
|
|
|
// xfail-stage3
|
2010-06-23 23:03:09 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn x(s: str, n: int) { log s; log n; }
|
2010-06-23 23:03:09 -05:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
spawn x("hello from first spawned fn", 65);
|
|
|
|
spawn x("hello from second spawned fn", 66);
|
|
|
|
spawn x("hello from third spawned fn", 67);
|
|
|
|
let i: int = 30;
|
|
|
|
while i > 0 { i = i - 1; log "parent sleeping"; yield; }
|
|
|
|
}
|