|
| 1 | +error[E0478]: lifetime bound not satisfied |
| 2 | + --> $DIR/lifetime-not-long-enough-suggestion-regression-test-124563.rs:19:16 |
| 3 | + | |
| 4 | +LL | type Bar = BarImpl<'a, 'b, T>; |
| 5 | + | ^^^^^^^^^^^^^^^^^^ |
| 6 | + | |
| 7 | +note: lifetime parameter instantiated with the lifetime `'a` as defined here |
| 8 | + --> $DIR/lifetime-not-long-enough-suggestion-regression-test-124563.rs:14:6 |
| 9 | + | |
| 10 | +LL | impl<'a, 'b, T> Foo for FooImpl<'a, 'b, T> |
| 11 | + | ^^ |
| 12 | +note: but lifetime parameter must outlive the lifetime `'b` as defined here |
| 13 | + --> $DIR/lifetime-not-long-enough-suggestion-regression-test-124563.rs:14:10 |
| 14 | + | |
| 15 | +LL | impl<'a, 'b, T> Foo for FooImpl<'a, 'b, T> |
| 16 | + | ^^ |
| 17 | + |
| 18 | +error: lifetime may not live long enough |
| 19 | + --> $DIR/lifetime-not-long-enough-suggestion-regression-test-124563.rs:23:21 |
| 20 | + | |
| 21 | +LL | self.enter_scope(|ctx| { |
| 22 | + | --- |
| 23 | + | | |
| 24 | + | has type `&'1 mut FooImpl<'_, '_, T>` |
| 25 | + | has type `&mut FooImpl<'2, '_, T>` |
| 26 | +LL | BarImpl(ctx); |
| 27 | + | ^^^ this usage requires that `'1` must outlive `'2` |
| 28 | + |
| 29 | +error: lifetime may not live long enough |
| 30 | + --> $DIR/lifetime-not-long-enough-suggestion-regression-test-124563.rs:22:9 |
| 31 | + | |
| 32 | +LL | impl<'a, 'b, T> Foo for FooImpl<'a, 'b, T> |
| 33 | + | -- -- lifetime `'b` defined here |
| 34 | + | | |
| 35 | + | lifetime `'a` defined here |
| 36 | +... |
| 37 | +LL | / self.enter_scope(|ctx| { |
| 38 | +LL | | BarImpl(ctx); |
| 39 | +LL | | }); |
| 40 | + | |__________^ argument requires that `'a` must outlive `'b` |
| 41 | + | |
| 42 | + = help: consider adding the following bound: `'a: 'b` |
| 43 | + = note: requirement occurs because of a mutable reference to `FooImpl<'_, '_, T>` |
| 44 | + = note: mutable references are invariant over their type parameter |
| 45 | + = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance |
| 46 | + |
| 47 | +error: aborting due to 3 previous errors |
| 48 | + |
| 49 | +For more information about this error, try `rustc --explain E0478`. |
0 commit comments