rust/src/test/ui/regions/region-object-lifetime-4.nll.stderr

13 lines
552 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
--> $DIR/region-object-lifetime-4.rs:12:5
|
LL | fn borrowed_receiver_related_lifetimes2<'a,'b>(x: &'a (Foo+'b)) -> &'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`
error: aborting due to previous error