blob: 5de3fc4ab0acd99be324b8e6ae7d5251c30c1ada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error[E0597]: borrowed value does not live long enough
--> $DIR/borrowck-ref-into-rvalue.rs:14:14
|
LL | Some(ref m) => {
| ^^^^^ borrowed value does not live long enough
...
LL | }
| - borrowed value dropped here while still borrowed
LL | println!("{}", *msg);
LL | }
| - borrowed value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.
|