rust/src/test/ui/issues/issue-33941.rs
2021-11-21 08:15:21 -06:00

7 lines
146 B
Rust

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