aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/spawn.rs
blob: 5dd758baf1c5041332a6a3491d502ce3ef848fb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// xfail-stage0
// -*- rust -*-

fn main() {
  spawn child(10);
}

fn child(int i) {
   log i;
}