]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/borrowed-universal-error-2.stderr
Merge branch 'refactor-select' of https://github.com/aravind-pg/rust into update...
[rust.git] / src / test / ui / nll / borrowed-universal-error-2.stderr
1 error[E0597]: `v` does not live long enough
2   --> $DIR/borrowed-universal-error-2.rs:18:5
3    |
4 LL |     &v
5    |     ^^ borrowed value does not live long enough
6 LL |     //~^ ERROR `v` does not live long enough [E0597]
7 LL | }
8    | - borrowed value only lives until here
9    |
10 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 16:1...
11   --> $DIR/borrowed-universal-error-2.rs:16:1
12    |
13 LL | fn foo<'a>(x: &'a (u32,)) -> &'a u32 {
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15
16 error: aborting due to previous error
17
18 If you want more information on this error, try using "rustc --explain E0597"