]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetime-errors/ex1-return-one-existing-name-if-else-using-impl-3.stderr
Rollup merge of #42985 - venkatagiri:issue_42444, r=Mark-Simulacrum
[rust.git] / src / test / ui / lifetime-errors / ex1-return-one-existing-name-if-else-using-impl-3.stderr
1 error[E0621]: explicit lifetime required in the type of `x`
2   --> $DIR/ex1-return-one-existing-name-if-else-using-impl-3.rs:18:36
3    |
4 16 |   fn foo<'a>(&'a self, x: &i32) -> &i32 {
5    |                        - consider changing the type of `x` to `&'a i32`
6 17 | 
7 18 |     if true { &self.field } else { x }
8    |                                    ^ lifetime `'a` required
9
10 error: aborting due to previous error(s)
11