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

15 lines
217 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) {
}