blob: 04efa27189b746e533439c6548818dc7d1e4b17d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use std::vec::IntoIter;
pub fn get_tok(it: &mut IntoIter<u8>) {
let mut found_e = false;
let temp: Vec<u8> = it
//~^ ERROR to be an iterator that yields `&_`, but it yields `u8`
.take_while(|&x| {
found_e = true;
false
})
.cloned()
.collect(); //~ ERROR the method
}
fn main() {}
|