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