Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-34334.rs
blob: 51486bc40de0ca6cb7d7dde3e54ee366f7bd2ba9 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
sr
:
Vec
<(
u32
,
_
,
_
)
=
vec
![];
//~^ ERROR expected one of
let
sr2
:
Vec
<(
u32
,
_
,
_
)>
=
sr
.
iter
().
map
(|(
faction
,
th_sender
,
th_receiver
)|
{}).
collect
();
//~^ ERROR a value of type `Vec<(u32, _, _)>` cannot be built
}