Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
closure_promotion.rs
blob: c790e423a806b926d62c6d1827f2bcb310634bd1 [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass (FIXME(62277): could be check-pass?)
fn
main
()
{
let
x
:
&
'
static
_
=
&||
{
let
z
=
3
;
z
};
}