rust/tests/ui/nll/user-annotations/method-ufcs-inherent-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-10-15 05:14:08 -05:00
error[E0597]: `v` does not live long enough
--> $DIR/method-ufcs-inherent-2.rs:14:37
2018-10-15 05:14:08 -05:00
|
LL | fn foo<'a>() {
| -- lifetime `'a` defined here
LL | let v = 22;
2023-01-14 21:06:44 -06:00
| - binding `v` declared here
2018-10-15 05:14:08 -05:00
LL | let x = A::<'a>::new::<&'a u32>(&v, &v);
| ------------------------^^-----
| | |
| | borrowed value does not live long enough
| argument requires that `v` is borrowed for `'a`
2018-10-16 17:11:55 -05:00
...
2018-10-15 05:14:08 -05:00
LL | }
| - `v` dropped here while still borrowed
error[E0597]: `v` does not live long enough
--> $DIR/method-ufcs-inherent-2.rs:14:41
2018-10-15 05:14:08 -05:00
|
LL | fn foo<'a>() {
| -- lifetime `'a` defined here
LL | let v = 22;
2023-01-14 21:06:44 -06:00
| - binding `v` declared here
2018-10-15 05:14:08 -05:00
LL | let x = A::<'a>::new::<&'a u32>(&v, &v);
| ----------------------------^^-
| | |
| | borrowed value does not live long enough
| argument requires that `v` is borrowed for `'a`
2018-10-16 17:11:55 -05:00
...
2018-10-15 05:14:08 -05: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`.