Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
nll
/
issue-40510-2.rs
blob: 9ce54862265dc81d83cd1b97c29612d03ca3809d [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
unused
)]
fn
f
()
{
let
x
:
Box
<()>
=
Box
::
new
(());
||
{
&
x
};
}
fn
main
()
{}