blob: 26195318380d2ad9d7a1f7fa917db41c0a89f4e6 [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 type mismatch resolving
//~| expected type `u8`
//~| found reference `&_`
.collect(); //~ ERROR no method named `collect`
}
fn main() {}