rust/src/test/ui/nll/issue-52113.stderr

16 lines
527 B
Plaintext
Raw Normal View History

2018-12-11 21:49:40 +00:00
error: lifetime may not live long enough
--> $DIR/issue-52113.rs:34:5
2018-07-27 21:46:16 +00:00
|
LL | fn produce_err<'a, 'b: 'a>(data: &'b mut Vec<&'b u32>, value: &'a u32) -> impl Bazinga + 'b {
| -- -- lifetime `'b` defined here
| |
| lifetime `'a` defined here
2018-09-15 17:30:29 +00:00
...
LL | x
| ^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
2018-11-28 21:05:36 +00:00
|
2019-10-27 14:39:14 +00:00
= help: consider adding the following bound: `'a: 'b`
2018-11-28 21:05:36 +00:00
2018-07-27 21:46:16 +00:00
error: aborting due to previous error