]>
Commit | Line | Data |
---|---|---|
48663c56 XL |
1 | error: lifetime may not live long enough |
2 | --> $DIR/regions-creating-enums4.rs:7:5 | |
3 | | | |
4 | LL | fn mk_add_bad2<'a,'b>(x: &'a Ast<'a>, y: &'a Ast<'a>, z: &Ast) -> Ast<'b> { | |
5 | | -- -- lifetime `'b` defined here | |
6 | | | | |
7 | | lifetime `'a` defined here | |
8 | LL | Ast::Add(x, y) | |
5099ac24 | 9 | | ^^^^^^^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a` |
60c5eb7d XL |
10 | | |
11 | = help: consider adding the following bound: `'a: 'b` | |
48663c56 XL |
12 | |
13 | error: aborting due to previous error | |
14 |