summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/region-object-lifetime-2.stderr
blob: d95289f3f9def09c27b6261dde5aa814558a4822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: lifetime may not live long enough
  --> $DIR/region-object-lifetime-2.rs:10:5
   |
LL | fn borrowed_receiver_different_lifetimes<'a,'b>(x: &'a dyn Foo) -> &'b () {
   |                                          -- -- lifetime `'b` defined here
   |                                          |
   |                                          lifetime `'a` defined here
LL |     x.borrowed()
   |     ^^^^^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
   |
   = help: consider adding the following bound: `'a: 'b`

error: aborting due to previous error