2019-04-22 08:40:08 +01:00
|
|
|
error[E0716]: temporary value dropped while borrowed
|
2022-07-14 17:12:01 -07:00
|
|
|
--> $DIR/borrowck-ref-into-rvalue.rs:4:11
|
2016-10-26 19:10:39 +03:00
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
LL | match Some("Hello".to_string()) {
|
2022-10-20 16:43:27 +01:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
|
2016-10-26 19:10:39 +03:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | }
|
2019-04-22 08:40:08 +01:00
|
|
|
| - temporary value is freed at the end of this statement
|
2018-02-25 02:01:39 +03:00
|
|
|
LL | println!("{}", *msg);
|
2019-04-22 08:40:08 +01:00
|
|
|
| ---- borrow later used here
|
2016-10-26 19:10:39 +03:00
|
|
|
|
|
2022-07-14 17:12:01 -07:00
|
|
|
help: consider using a `let` binding to create a longer lived value
|
|
|
|
|
|
|
|
|
LL ~ let binding = Some("Hello".to_string());
|
|
|
|
LL ~ match binding {
|
|
|
|
|
|
2016-10-26 19:10:39 +03:00
|
|
|
|
2017-07-02 13:49:30 +03:00
|
|
|
error: aborting due to previous error
|
2016-10-26 19:10:39 +03:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0716`.
|