2019-04-22 08:40:08 +01:00
|
|
|
error[E0515]: cannot return reference to local data `x`
|
|
|
|
--> $DIR/issue-11925.rs:8:35
|
2016-08-16 15:02:20 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let f = to_fn_once(move|| &x);
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^ returns a reference to data owned by the current function
|
2016-08-16 15:02:20 -07:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2016-08-16 15:02:20 -07:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|