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