]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/borrowck-ref-into-rvalue.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / span / borrowck-ref-into-rvalue.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/borrowck-ref-into-rvalue.rs:4:11
3    |
4 LL |     match Some("Hello".to_string()) {
5    |           ^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
6 ...
7 LL |     }
8    |     - temporary value is freed at the end of this statement
9 LL |     println!("{}", *msg);
10    |                    ---- borrow later used here
11    |
12 help: consider using a `let` binding to create a longer lived value
13    |
14 LL ~     let binding = Some("Hello".to_string());
15 LL ~     match binding {
16    |
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0716`.