]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-4.nll.stderr
Omit 'missing IndexMut impl' suggestion when IndexMut is implemented.
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-one-is-struct-4.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex3-both-anon-regions-one-is-struct-4.rs:14:11
3    |
4 LL |     y.b = x; //~ ERROR lifetime mismatch
5    |           ^
6
7 error: unsatisfied lifetime constraints
8   --> $DIR/ex3-both-anon-regions-one-is-struct-4.rs:14:5
9    |
10 LL | fn foo(mut y: Ref, x: &u32) {
11    |        -----          - let's call the lifetime of this reference `'1`
12    |        |
13    |        has type `Ref<'_, '2>`
14 LL |     y.b = x; //~ ERROR lifetime mismatch
15    |     ^^^^^^^ requires that `'1` must outlive `'2`
16
17 error: aborting due to previous error
18