summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-31173.rs
blob: f678df5b42b60d927cf4386889a745d7a553e73a (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 to be an iterator that yields `&_`, but it yields `u8`
        .collect(); //~ ERROR the method
}

fn main() {}