blob: 1311d5121b5a107b60121ba311975ea17bff2422 (
plain)
1
2
3
4
5
6
|
fn call_rec<F>(mut f: F) -> usize where F: FnMut(usize) -> usize {
//~^ WARN function cannot return without recursing
(|x| f(x))(call_rec(f)) //~ ERROR cannot move out of `f`
}
fn main() {}
|