blob: 7a395f677aa68e395f3d6bd66cd2e1c32a012919 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- rust -*-
use std;
import task;
fn main() {
let t = task::spawn_joinable {|| child(10); };
task::join(t);
}
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:
|