blob: f678df5b42b60d927cf4386889a745d7a553e73a [file] [log] [blame]
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() {}