Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
closures
/
closure_promotion.rs
blob: 3b3c498c7a843a0748c83d5e7aa9c037785285d2 [
file
] [
edit
]
//@ check-pass
fn
main
()
{
let
x
:
&
'
static
_
=
&||
{
let
z
=
3
;
z
};
}