]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs-3.nll.stderr
Change NLL compare mode to borrowck=migrate.
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-both-are-structs-3.nll.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/ex3-both-anon-regions-both-are-structs-3.rs:16:5
3    |
4 LL | fn foo(mut x: Ref) {
5    |        -----
6    |        |
7    |        has type `Ref<'_, '1>`
8    |        has type `Ref<'2, '_>`
9 LL |     x.a = x.b; //~ ERROR lifetime mismatch
10    |     ^^^^^^^^^ assignment requires that `'1` must outlive `'2`
11
12 error: aborting due to previous error
13