aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/spawn-module-qualified.rs
blob: 68f665df7d8d04371854250a618051cb64d739a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
fn main() {
  auto x = spawn m.child(10);
  join x;
}
mod m {
  fn child(int i) {
    log i;
  }
}