2018-10-15 05:14:08 -05:00
|
|
|
error[E0597]: `v` does not live long enough
|
|
|
|
--> $DIR/method-ufcs-inherent-3.rs:16:26
|
|
|
|
|
|
2018-10-14 09:12:02 -05:00
|
|
|
LL | fn foo<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | let v = 22;
|
2018-10-15 05:14:08 -05:00
|
|
|
LL | let x = <A<'a>>::new(&v, 22);
|
2018-10-14 09:12:02 -05:00
|
|
|
| -------------^^-----
|
|
|
|
| | |
|
|
|
|
| | borrowed value does not live long enough
|
|
|
|
| argument requires that `v` is borrowed for `'a`
|
2018-10-16 17:11:55 -05:00
|
|
|
LL | //~^ ERROR
|
2018-10-15 05:14:08 -05:00
|
|
|
LL | }
|
|
|
|
| - `v` dropped here while still borrowed
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|