Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
issue-22864-2.rs
blob: d98dbeda46b5d049a61cb82dfe7272e1feeb5303 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ needs-threads
pub
fn
main
()
{
let
f
=
||
||
0
;
std
::
thread
::
spawn
(
f
());
}