summaryrefslogtreecommitdiffstats
path: root/src/test/ui/recursion/issue-83150.rs
blob: e647f0ff4fb8beaa3e3285ea829908df27f3dfec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-fail
// compile-flags: -Copt-level=0
//~^^ ERROR overflow evaluating the requirement

fn main() {
    let mut iter = 0u8..1;
    func(&mut iter)
}

fn func<T: Iterator<Item = u8>>(iter: &mut T) { //~ WARN function cannot return without recursing
    func(&mut iter.map(|x| x + 1))
}