]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-borrowed-uniq-rvalue-2.stderr
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / borrowck / borrowck-borrowed-uniq-rvalue-2.stderr
1 error[E0716]: temporary value dropped while borrowed
2   --> $DIR/borrowck-borrowed-uniq-rvalue-2.rs:20:20
3    |
4 LL |     let x = defer(&vec!["Goodbye", "world!"]);
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 |     x.x[0];
9    |     ------ borrow later used here
10    |
11    = note: consider using a `let` binding to create a longer lived value
12    = note: this error originates in the macro `vec` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0716`.