summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-31173.rs
blob: 48061ae54ae206ebff1f353987d860789eee296f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::vec::IntoIter;

pub fn get_tok(it: &mut IntoIter<u8>) {
    let mut found_e = false;

    let temp: Vec<u8> = it.take_while(|&x| {
        found_e = true;
        false
    })
        .cloned()
        //~^ ERROR type mismatch resolving
        .collect(); //~ ERROR the method
}

fn main() {}