]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/slice-borrow.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / span / slice-borrow.stderr
1 error[E0597]: borrowed value does not live long enough
2   --> $DIR/slice-borrow.rs:16:28
3    |
4 LL |         let x: &[isize] = &vec![1, 2, 3, 4, 5];
5    |                            ^^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
6 ...
7 LL |     }
8    |     - temporary value dropped here while still borrowed
9 LL |     y.use_ref();
10 LL | }
11    | - temporary value needs to live until here
12    |
13    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0597`.