mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
9 lines
249 B
Rust
9 lines
249 B
Rust
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
|
|
|
|
}
|