2018-10-14 09:12:02 -05:00
|
|
|
error[E0515]: cannot return value referencing temporary value
|
2019-04-07 10:07:36 -05:00
|
|
|
--> $DIR/return-ref-mut-issue-46557.rs:5:5
|
2018-01-11 17:08:28 -06:00
|
|
|
|
|
2018-10-14 09:12:02 -05:00
|
|
|
LL | let ref mut x = 1234543;
|
|
|
|
| ------- temporary value created here
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x
|
2018-10-14 09:12:02 -05:00
|
|
|
| ^ returns a value referencing data owned by the current function
|
2018-01-11 17:08:28 -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`.
|