summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-12127.rs
blob: 8b30ddc2de67e912e6f4dffdc37f3ea77f0a738d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(unboxed_closures)]

fn to_fn_once<A,F:FnOnce<A>>(f: F) -> F { f }
fn do_it(x: &isize) { }

fn main() {
    let x: Box<_> = Box::new(22);
    let f = to_fn_once(move|| do_it(&*x));
    to_fn_once(move|| {
        f();
        f();
        //~^ ERROR: use of moved value: `f`
    })()
}