rust/tests/ui/typeck/issue-31173.rs

16 lines
346 B
Rust

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() {}