blob: edb7ce2d6e9f7919ed0346543068b1d74b125f8c [file] [log] [blame]
error[E0623]: lifetime mismatch
--> $DIR/ex3-both-anon-regions-self-is-anon.rs:17:19
|
16 | fn foo<'a>(&self, x: &Foo) -> &Foo {
| ---- ----
| |
| this parameter and the return type are declared with different lifetimes...
17 | if true { x } else { self } //~ ERROR lifetime mismatch
| ^ ...but data from `x` is returned here
error: aborting due to previous error