]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-borrowed-uniq-rvalue-2.nll.stderr
Unit test from #57866.
[rust.git] / src / test / ui / borrowck / borrowck-borrowed-uniq-rvalue-2.nll.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!"]); //~ ERROR borrowed value does not live long enough
5    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^ - temporary value is freed at the end of this statement
6    |                    |
7    |                    creates a temporary 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 a macro outside of the current crate (in Nightly builds, run with -Z external-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`.