]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-2.nll.stderr
Change NLL compare mode to borrowck=migrate.
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-one-is-struct-2.nll.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/ex3-both-anon-regions-one-is-struct-2.rs:14:5
3    |
4 LL | fn foo(mut x: Ref, y: &u32) {
5    |        -----          - let's call the lifetime of this reference `'2`
6    |        |
7    |        has type `Ref<'_, '1>`
8 LL |     y = x.b; //~ ERROR lifetime mismatch
9    |     ^^^^^^^ assignment requires that `'1` must outlive `'2`
10
11 error[E0384]: cannot assign to immutable argument `y`
12   --> $DIR/ex3-both-anon-regions-one-is-struct-2.rs:14:5
13    |
14 LL | fn foo(mut x: Ref, y: &u32) {
15    |                    - help: make this binding mutable: `mut y`
16 LL |     y = x.b; //~ ERROR lifetime mismatch
17    |     ^^^^^^^ cannot assign to immutable argument
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0384`.