]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/borrowed-temporary-error.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / nll / borrowed-temporary-error.stderr
1 error[E0716]: temporary value dropped while borrowed
2 --> $DIR/borrowed-temporary-error.rs:20:10
3 |
4 LL | &(v,)
5 | ^^^^ creates a temporary which is freed while still in use
6 LL | //~^ ERROR temporary value dropped while borrowed [E0716]
7 LL | });
8 | - temporary value is freed at the end of this statement
9 LL | println!("{:?}", x);
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`.