issue-33941.rs 175 字节
Newer Older
1 2 3
use std::collections::HashMap;

fn main() {
4 5
    for _ in HashMap::new().iter().cloned() {} //~ ERROR type mismatch
    //~^ ERROR type mismatch
6
    //~| ERROR type mismatch
7
}