rust/tests/ui/borrowck/issue-46471.stderr

10 lines
285 B
Plaintext
Raw Normal View History

2019-05-02 17:34:15 -05:00
error[E0515]: cannot return reference to local variable `x`
--> $DIR/issue-46471.rs:3:5
2017-12-08 09:20:45 -06:00
|
2018-02-22 18:42:32 -06:00
LL | &x
| ^^ returns a reference to data owned by the current function
2017-12-08 09:20:45 -06:00
2019-05-02 17:34:15 -05:00
error: aborting due to previous error
2017-12-08 09:20:45 -06:00
2019-05-02 17:34:15 -05:00
For more information about this error, try `rustc --explain E0515`.