]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-creating-enums3.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / regions / regions-creating-enums3.nll.stderr
CommitLineData
48663c56
XL
1error: lifetime may not live long enough
2 --> $DIR/regions-creating-enums3.rs:7:5
3 |
4LL | fn mk_add_bad1<'a,'b>(x: &'a Ast<'a>, y: &'b Ast<'b>) -> Ast<'a> {
5 | -- -- lifetime `'b` defined here
6 | |
7 | lifetime `'a` defined here
8LL | Ast::Add(x, y)
9 | ^^^^^^^^^^^^^^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
60c5eb7d
XL
10 |
11 = help: consider adding the following bound: `'b: 'a`
48663c56
XL
12
13error: aborting due to previous error
14