rust/src/test/run-pass/task-life-0.rs
2011-10-20 20:34:04 -07:00

8 lines
95 B
Rust

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