2018-10-14 15:12:02 +01:00
|
|
|
error[E0515]: cannot return reference to function parameter `x`
|
2019-04-22 08:40:08 +01:00
|
|
|
--> $DIR/borrowck-local-borrow-outlives-fn.rs:2:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | &x
|
2018-10-14 15:12:02 +01:00
|
|
|
| ^^ returns a reference to data owned by the current function
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-10-14 15:12:02 +01:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|