summary refs log tree commit diff
path: root/src/test/ui/issues/issue-31173.rs
blob: 26195318380d2ad9d7a1f7fa917db41c0a89f4e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
        //~| expected type `u8`
        //~| found reference `&_`
        .collect(); //~ ERROR no method named `collect`
}

fn main() {}