rust/src/test/run-pass/child-outlives-parent.rs
2011-06-28 16:12:34 -07:00

6 lines
132 B
Rust

// xfail-stage0
// Reported as issue #126, child leaks the string.
fn child2(str s) { }
fn main() { auto x = spawn child2("hi"); }