2018-08-06 11:33:05 -05:00
|
|
|
error: unsatisfied lifetime constraints
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-52113.rs:38:5
|
2018-07-27 16:46:16 -05:00
|
|
|
|
|
|
|
|
LL | fn produce_err<'a, 'b: 'a>(data: &'b mut Vec<&'b u32>, value: &'a u32) -> impl Bazinga + 'b {
|
2018-08-06 11:33:05 -05:00
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
2018-09-15 12:30:29 -05:00
|
|
|
...
|
|
|
|
LL | x //~ ERROR unsatisfied lifetime constraints
|
|
|
|
| ^ returning this value requires that `'a` must outlive `'b`
|
2018-07-27 16:46:16 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|