7 lines
146 B
Rust
7 lines
146 B
Rust
use std::collections::HashMap;
|
|
|
|
fn main() {
|
|
for _ in HashMap::new().iter().cloned() {} //~ ERROR type mismatch
|
|
//~^ ERROR type mismatch
|
|
}
|