mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

The SCCs of the region graph are not a reliable heuristic to use for blaming an interesting constraint for diagnostics. For region errors, if the outlived region is `'static`, or the involved types are invariant in their lifetiems, there will be cycles in the constraint graph containing both the target region and the most interesting constraints to blame. To get better diagnostics in these cases, this commit removes that heuristic.
19 lines
761 B
Plaintext
19 lines
761 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/ex2c-push-inference-variable.rs:7: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 | let z = Ref { data: y.data };
|
|
LL | x.push(z);
|
|
| ^^^^^^^^^ argument requires that `'c` must outlive `'b`
|
|
|
|
|
= help: consider adding the following bound: `'c: 'b`
|
|
= note: requirement occurs because of a mutable reference to `Vec<Ref<'_, i32>>`
|
|
= note: mutable references are invariant over their type parameter
|
|
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
|
|
|
|
error: aborting due to 1 previous error
|
|
|