2018-10-14 15:12:02 +01:00
|
|
|
error[E0515]: cannot return reference to local variable `local`
|
2019-04-07 16:07:36 +01:00
|
|
|
--> $DIR/issue-47470.rs:15:9
|
2018-02-27 16:14:41 -05:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | &local
|
2018-10-14 15:12:02 +01:00
|
|
|
| ^^^^^^ returns a reference to data owned by the current function
|
2018-02-27 16:14:41 -05:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-02-27 16:14:41 -05:00
|
|
|
|
2018-10-14 15:12:02 +01:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|