blob: ab3654131f1d936050eb8851795527b0b3dc862e [file] [log] [blame]
fn get_iter(vec: &[i32]) -> impl Iterator<Item = {}> + '_ {
//~^ ERROR expected type, found constant
//~| ERROR expected type, found constant
//~| ERROR associated const equality is incomplete
vec.iter()
}
fn main() {
let vec = Vec::new();
let mut iter = get_iter(&vec);
iter.next();
}