2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2010-08-03 19:20:29 +00:00
|
|
|
// Reported as issue #126, child leaks the string.
|
2011-08-13 22:20:11 +00:00
|
|
|
|
2015-03-06 02:33:58 +00:00
|
|
|
#![feature(std_misc)]
|
|
|
|
|
2015-01-02 07:53:35 +00:00
|
|
|
use std::thread::Thread;
|
2011-08-13 22:20:11 +00:00
|
|
|
|
2014-05-22 23:57:53 +00:00
|
|
|
fn child2(_s: String) { }
|
2010-08-03 19:20:29 +00:00
|
|
|
|
2013-05-08 04:33:31 +00:00
|
|
|
pub fn main() {
|
2015-01-02 07:53:35 +00:00
|
|
|
let _x = Thread::spawn(move|| child2("hi".to_string()));
|
2013-05-08 04:33:31 +00:00
|
|
|
}
|