]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-2.stderr
Account for --remap-path-prefix in save-analysis
[rust.git] / src / test / ui / lifetime-errors / ex1-return-one-existing-name-if-else-2.stderr
1 error[E0621]: explicit lifetime required in the type of `x`
2   --> $DIR/ex1-return-one-existing-name-if-else-2.rs:12:16
3    |
4 LL | fn foo<'a>(x: &i32, y: &'a i32) -> &'a i32 {
5    |            - consider changing the type of `x` to `&'a i32`
6 LL |     if x > y { x } else { y } //~ ERROR explicit lifetime
7    |                ^ lifetime `'a` required
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0621`.