Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
threads-sendsync
/
task-comm-1.rs
blob: 75d9e887cd124b105083658de6ded25c80b79538 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unused_must_use
)]
//@ needs-threads
use
std
::
thread
;
pub
fn
main
()
{
test00
();
}
fn
start
()
{
println
!(
"Started / Finished task."
);
}
fn
test00
()
{
thread
::
spawn
(
move
||
start
()).
join
();
println
!(
"Completing."
);
}