]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/region-object-lifetime-2.nll.stderr
Rollup merge of #89468 - FabianWolff:issue-89358, r=jackh726
[rust.git] / src / test / ui / regions / region-object-lifetime-2.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/region-object-lifetime-2.rs:10:5
3    |
4 LL | fn borrowed_receiver_different_lifetimes<'a,'b>(x: &'a dyn Foo) -> &'b () {
5    |                                          -- -- lifetime `'b` defined here
6    |                                          |
7    |                                          lifetime `'a` defined here
8 LL |     x.borrowed()
9    |     ^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'b`
10    |
11    = help: consider adding the following bound: `'a: 'b`
12
13 error: aborting due to previous error
14