summary refs log tree commit diff
path: root/src/test/run-pass/spawn.rs
blob: 600cbdb06b8b0e912db70c74c15cb15374b095eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -*- rust -*-

use std;

import task;

fn main() {
    task::spawn {|| child(10); };
}

fn child(&&i: int) { log(error, i); assert (i == 10); }

// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: