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

11 lines
166 B
Rust
Raw Normal View History

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