]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex3-both-anon-regions-using-impl-items.nll.stderr
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / ui / lifetime-errors / ex3-both-anon-regions-using-impl-items.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:16
3    |
4 LL |         x.push(y); //~ ERROR lifetime mismatch
5    |                ^
6
7 error: unsatisfied lifetime constraints
8   --> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:9
9    |
10 LL |     fn foo(x: &mut Vec<&u8>, y: &u8) {
11    |                        -        - let's call the lifetime of this reference `'1`
12    |                        |
13    |                        let's call the lifetime of this reference `'2`
14 LL |         x.push(y); //~ ERROR lifetime mismatch
15    |         ^^^^^^^^^ argument requires that `'1` must outlive `'2`
16
17 error: aborting due to previous error
18