]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl-2.stderr
Auto merge of #42991 - sfackler:unstable-rangeargument, r=alexcrichton
[rust.git] / src / test / ui / lifetime-errors / ex1-return-one-existing-name-if-else-using-impl-2.stderr
1 error[E0621]: explicit lifetime required in the type of `x`
2   --> $DIR/ex1-return-one-existing-name-if-else-using-impl-2.rs:14:15
3    |
4 13 | fn foo<'a>(x: &i32, y: &'a i32) -> &'a i32 {
5    |            - consider changing the type of `x` to `&'a i32`
6 14 |    if x > y { x } else { y }
7    |               ^ lifetime `'a` required
8
9 error: aborting due to previous error(s)
10