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