]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/lifetime-errors/ex1-return-one-existing-name-if-else.stderr
Rollup merge of #105555 - krasimirgg:llvm-int-opt-2, r=cuviper
[rust.git] / src / test / ui / lifetimes / lifetime-errors / ex1-return-one-existing-name-if-else.stderr
1 error[E0621]: explicit lifetime required in the type of `y`
2   --> $DIR/ex1-return-one-existing-name-if-else.rs:2:27
3    |
4 LL | fn foo<'a>(x: &'a i32, y: &i32) -> &'a i32 {
5    |                           ---- help: add explicit lifetime `'a` to the type of `y`: `&'a i32`
6 LL |     if x > y { x } else { y }
7    |                           ^ lifetime `'a` required
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0621`.