blob: 6c32adc11ce0555457b6a24e005a403637b33de3 [file] [log] [blame]
error[E0623]: lifetime mismatch
--> $DIR/ex1-return-one-existing-name-self-is-anon.rs:18:30
|
LL | fn foo<'a>(&self, x: &'a Foo) -> &'a Foo {
| ----- -------
| |
| this parameter and the return type are declared with different lifetimes...
LL |
LL | if true { x } else { self } //~ ERROR lifetime mismatch
| ^^^^ ...but data from `self` is returned here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0623`.