rust/tests/ui/lifetimes/lifetime-errors/ex2d-push-inference-variable-2.stderr

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

16 lines
470 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/ex2d-push-inference-variable-2.rs:8:5
|
LL | fn foo<'a, 'b, 'c>(x: &'a mut Vec<Ref<'b, i32>>, y: Ref<'c, i32>) {
| -- -- lifetime `'c` defined here
| |
| lifetime `'b` defined here
...
LL | a.push(b);
| ^^^^^^^^^ argument requires that `'c` must outlive `'b`
2019-10-27 09:39:14 -05:00
|
= help: consider adding the following bound: `'c: 'b`
error: aborting due to previous error