2018-10-15 10:14:08 +00:00
|
|
|
error[E0597]: `v` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/method-ufcs-inherent-2.rs:14:37
|
2018-10-15 10:14:08 +00:00
|
|
|
|
|
2018-10-14 14:12:02 +00:00
|
|
|
LL | fn foo<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | let v = 22;
|
2023-01-15 03:06:44 +00:00
|
|
|
| - binding `v` declared here
|
2018-10-15 10:14:08 +00:00
|
|
|
LL | let x = A::<'a>::new::<&'a u32>(&v, &v);
|
2018-10-14 14:12:02 +00:00
|
|
|
| ------------------------^^-----
|
|
|
|
| | |
|
|
|
|
| | borrowed value does not live long enough
|
|
|
|
| argument requires that `v` is borrowed for `'a`
|
2018-10-16 22:11:55 +00:00
|
|
|
...
|
2018-10-15 10:14:08 +00:00
|
|
|
LL | }
|
|
|
|
| - `v` dropped here while still borrowed
|
|
|
|
|
|
|
|
error[E0597]: `v` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/method-ufcs-inherent-2.rs:14:41
|
2018-10-15 10:14:08 +00:00
|
|
|
|
|
2018-10-14 14:12:02 +00:00
|
|
|
LL | fn foo<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | let v = 22;
|
2023-01-15 03:06:44 +00:00
|
|
|
| - binding `v` declared here
|
2018-10-15 10:14:08 +00:00
|
|
|
LL | let x = A::<'a>::new::<&'a u32>(&v, &v);
|
2018-10-14 14:12:02 +00:00
|
|
|
| ----------------------------^^-
|
|
|
|
| | |
|
|
|
|
| | borrowed value does not live long enough
|
|
|
|
| argument requires that `v` is borrowed for `'a`
|
2018-10-16 22:11:55 +00:00
|
|
|
...
|
2018-10-15 10:14:08 +00:00
|
|
|
LL | }
|
|
|
|
| - `v` dropped here while still borrowed
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|