]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/borrowed-temporary-error.stderr
Rollup merge of #105216 - GuillaumeGomez:rm-unused-gui-test, r=notriddle
[rust.git] / src / test / ui / nll / borrowed-temporary-error.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/borrowed-temporary-error.rs:8:10
3    |
4 LL |         &(v,)
5    |          ^^^^ creates a temporary value which is freed while still in use
6 LL |
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`.