blob: 763b62d945df8c911806e9026e47380654c56ed3 [file] [log] [blame]
error[E0623]: lifetime mismatch
--> $DIR/regions-creating-enums3.rs:7:5
|
LL | fn mk_add_bad1<'a,'b>(x: &'a Ast<'a>, y: &'b Ast<'b>) -> Ast<'a> {
| ----------- -------
| |
| this parameter and the return type are declared with different lifetimes...
LL | Ast::Add(x, y)
| ^^^^^^^^^^^^^^ ...but data from `y` is returned here
error: aborting due to previous error