mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
300 B
Rust
14 lines
300 B
Rust
#![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);
|
|
}
|