Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
threads-sendsync
/
spawn.rs
blob: c9f7c40ddb886568aee3199586d8a7c9227328c8 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ needs-threads
use
std
::
thread
;
pub
fn
main
()
{
thread
::
spawn
(
move
||
child
(
10
)).
join
().
ok
().
unwrap
();
}
fn
child
(
i
:
isize
)
{
println
!(
"{}"
,
i
);
assert_eq
!(
i
,
10
);
}