]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-11493.stderr
Auto merge of #107663 - matthiaskrgr:107423-point-at-EOF-code, r=compiler-errors
[rust.git] / tests / ui / borrowck / issue-11493.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/issue-11493.rs:6:35
3    |
4 LL |     let y = x.as_ref().unwrap_or(&id(5));
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 LL |     let _ = &y;
9    |             -- borrow later used here
10    |
11 help: consider using a `let` binding to create a longer lived value
12    |
13 LL ~     let binding = id(5);
14 LL ~     let y = x.as_ref().unwrap_or(&binding);
15    |
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0716`.