mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
342 B
Rust
9 lines
342 B
Rust
//@ compile-flags: -Zdeduplicate-diagnostics=yes
|
|
|
|
use std::collections::HashMap;
|
|
|
|
fn main() {
|
|
for _ in HashMap::new().iter().cloned() {} //~ ERROR expected `Iter<'_, _, _>` to be an iterator that yields `&_`, but it yields `(&_, &_)`
|
|
//~^ ERROR expected `Iter<'_, _, _>` to be an iterator that yields `&_`, but it yields `(&_, &_)`
|
|
}
|