rust/src/test/ui/issues/issue-33941.rs
2018-12-25 21:08:33 -07:00

7 lines
146 B
Rust

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