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