rust/tests/ui/threads-sendsync/task-life-0.rs

13 lines
215 B
Rust

//@ run-pass
#![allow(unused_must_use)]
//@ needs-threads
//@ pretty-expanded FIXME #23616
use std::thread;
pub fn main() {
thread::spawn(move || child("Hello".to_string())).join();
}
fn child(_s: String) {}