13 lines
215 B
Rust
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) {}
|