]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-creating-enums3.stderr
Apply suggestions from code review
[rust.git] / src / test / ui / regions / regions-creating-enums3.stderr
1 error[E0623]: lifetime mismatch
2   --> $DIR/regions-creating-enums3.rs:7:5
3    |
4 LL | fn mk_add_bad1<'a,'b>(x: &'a Ast<'a>, y: &'b Ast<'b>) -> Ast<'a> {
5    |                                          -----------     -------
6    |                                          |
7    |                                          this parameter and the return type are declared with different lifetimes...
8 LL |     Ast::Add(x, y)
9    |     ^^^^^^^^^^^^^^ ...but data from `y` is returned here
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0623`.