
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.
12 lines
267 B
Rust
12 lines
267 B
Rust
struct Ref<'a, T: 'a> {
|
|
data: &'a T
|
|
}
|
|
|
|
fn foo<'a, 'b, 'c>(x: &'a mut Vec<Ref<'b, i32>>, y: Ref<'c, i32>) {
|
|
let a: &mut Vec<Ref<i32>> = x;
|
|
//~^ ERROR lifetime may not live long enough
|
|
let b = Ref { data: y.data };
|
|
Vec::push(a, b);
|
|
}
|
|
|
|
fn main() { }
|