Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
threads-sendsync
/
task-life-0.rs
blob: f08a281e76c6d7c9f9a2062235b1f7909511c8d4 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
)
{}