rust/src/test/run-pass/child-outlives-parent.rs

6 lines
132 B
Rust
Raw Normal View History

// xfail-stage0
// Reported as issue #126, child leaks the string.
fn child2(str s) { }
2011-06-28 16:21:31 -05:00
fn main() { auto x = spawn child2("hi"); }