]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/borrowck-ref-into-rvalue.stderr
Auto merge of #81507 - weiznich:add_diesel_to_cargo_test, r=Mark-Simulacrum
[rust.git] / src / test / ui / span / borrowck-ref-into-rvalue.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/borrowck-ref-into-rvalue.rs:3:11
3    |
4 LL |     match Some("Hello".to_string()) {
5    |           ^^^^^^^^^^^^^^^^^^^^^^^^^ creates a temporary 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    = note: consider using a `let` binding to create a longer lived value
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0716`.