]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-using-impl-items.nll.stderr
Change NLL compare mode to borrowck=migrate.
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-using-impl-items.nll.stderr
1 error: unsatisfied lifetime constraints
2   --> $DIR/ex3-both-anon-regions-using-impl-items.rs:15:9
3    |
4 LL |     fn foo(x: &mut Vec<&u8>, y: &u8) {
5    |                        -        - let's call the lifetime of this reference `'1`
6    |                        |
7    |                        let's call the lifetime of this reference `'2`
8 LL |         x.push(y); //~ ERROR lifetime mismatch
9    |         ^^^^^^^^^ argument requires that `'1` must outlive `'2`
10
11 error: aborting due to previous error
12