2018-10-14 09:12:02 -05:00
|
|
|
error[E0515]: cannot return reference to local variable `v`
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/borrowed-universal-error-2.rs:3:5
|
2018-03-01 08:56:43 -06:00
|
|
|
|
|
|
|
|
LL | &v
|
2018-10-14 09:12:02 -05:00
|
|
|
| ^^ returns a reference to data owned by the current function
|
2018-03-01 08:56:43 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-10-14 09:12:02 -05:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|