blob: 6f0eb1870f32775687936c8fcb06eb894e985145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![feature(unboxed_closures, tuple_trait)]
fn to_fn_mut<A:std::marker::Tuple,F:FnMut<A>>(f: F) -> F { f }
fn to_fn_once<A:std::marker::Tuple,F:FnOnce<A>>(f: F) -> F { f }
pub fn main() {
let bar: Box<_> = Box::new(3);
let _g = to_fn_mut(|| {
let _h = to_fn_once(move || -> isize { *bar }); //~ ERROR cannot move out of
});
}
|