]> git.proxmox.com Git - rustc.git/blob - tests/ui/borrowck/issue-11493.stderr
New upstream version 1.76.0+dfsg1
[rustc.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 1 previous error
18
19 For more information about this error, try `rustc --explain E0716`.