rust/src/test/run-pass/task-life-0.rs
2011-10-20 18:23:47 -07:00

8 lines
97 B
Rust

use std;
import std::task;
fn main() { task::spawn2("Hello", child); }
fn# child(&&s: str) {
}