]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-36082.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-36082.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-36082.rs:9: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 value which is freed while still in use
8 ...
9 LL |     println!("{}", val);
10    |                    --- borrow later used here
11    |
12 help: consider using a `let` binding to create a longer lived value
13    |
14 LL ~     let binding = x.borrow();
15 LL ~     let val: &_ = binding.0;
16    |
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0716`.