summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/issue-11925.rs
blob: cac9fd5bfb68da851aed9e9785d270915aba7c80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(unboxed_closures, tuple_trait)]

fn to_fn_once<A:std::marker::Tuple,F:FnOnce<A>>(f: F) -> F { f }

fn main() {
    let r = {
        let x: Box<_> = Box::new(42);
        let f = to_fn_once(move|| &x); //~ ERROR cannot return reference to local data `x`
        f()
    };

    drop(r);
}