]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl.nll.stderr
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / ui / lifetime-errors / ex1-return-one-existing-name-if-else-using-impl.nll.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/ex1-return-one-existing-name-if-else-using-impl.rs:21:20
3    |
4 LL |         if x > y { x } else { y } //~ ERROR lifetime mismatch
5    |                    ^
6
7 error: unsatisfied lifetime constraints
8   --> $DIR/ex1-return-one-existing-name-if-else-using-impl.rs:21:12
9    |
10 LL |     fn foo<'a>(x: &i32, y: &'a i32) -> &'a i32 {
11    |            --     - let's call the lifetime of this reference `'1`
12    |            |
13    |            lifetime `'a` defined here
14 LL | 
15 LL |         if x > y { x } else { y } //~ ERROR lifetime mismatch
16    |            ^^^^^ requires that `'1` must outlive `'a`
17
18 error: aborting due to previous error
19