blob: dfca39177855d90ea45fd14414ff6619fcff5918 [file] [log] [blame] [edit]
//@ known-bug: #117696
fn main() {
let mut it = (Empty);
rec(&mut it);
}
struct Empty;
impl Iterator for Empty {
type Item = ();
fn next<'a>(&'a mut self) -> core::option::Option<()> {
None
}
}
fn identity<T>(x: T) -> T {
x
}
fn rec<T>(mut it: T)
where
T: Iterator,
{
if () == () {
T::count(it);
} else {
rec(identity(&mut it))
}
}