2019-04-22 02:40:08 -05:00
|
|
|
error[E0515]: cannot return reference to local variable `x`
|
2023-02-21 19:41:48 -06:00
|
|
|
--> $DIR/issue-30438-c.rs:9:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | &x
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^^ returns a reference to data owned by the current function
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2023-02-21 19:41:48 -06:00
|
|
|
error: aborting due to previous error
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
For more information about this error, try `rustc --explain E0515`.
|