rust/src/test/run-pass/task-life-0.rs
2011-08-15 09:26:52 -07:00

8 lines
99 B
Rust

use std;
import std::task;
fn main() { task::_spawn(bind child("Hello")); }
fn child(s: str) {
}