]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-creating-enums3.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / regions / regions-creating-enums3.stderr
CommitLineData
b7449926 1error[E0623]: lifetime mismatch
0731742a 2 --> $DIR/regions-creating-enums3.rs:7:5
b7449926 3 |
0731742a 4LL | fn mk_add_bad1<'a,'b>(x: &'a Ast<'a>, y: &'b Ast<'b>) -> Ast<'a> {
b7449926
XL
5 | ----------- -------
6 | |
7 | this parameter and the return type are declared with different lifetimes...
532ac7d7 8LL | Ast::Add(x, y)
b7449926
XL
9 | ^^^^^^^^^^^^^^ ...but data from `y` is returned here
10
11error: aborting due to previous error
12
60c5eb7d 13For more information about this error, try `rustc --explain E0623`.