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