]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-36082.stderr
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-36082.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-36082.rs:8:19
3    |
4 LL |     let val: &_ = x.borrow().0;
5    |                   ^^^^^^^^^^  - temporary value is freed at the end of this statement
6    |                   |
7    |                   creates a temporary which is freed while still in use
8 ...
9 LL |     println!("{}", val);
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`.