mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-20 22:17:47 +00:00
15 lines
217 B
Rust
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) {
|
|
|
|
}
|