blob: dc25004f89bdbfcc8e56dff29aa1ae2d3b4bf9ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// build-fail
//~^ overflow evaluating
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))
}
|