summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/alias-liveness/rpit-hide-lifetime-for-swap.stderr
blob: b87e31acc1253739349ad16a49e9d132e748a0a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0700]: hidden type for `impl Swap + 'a` captures lifetime that does not appear in bounds
  --> $DIR/rpit-hide-lifetime-for-swap.rs:17:5
   |
LL | fn hide<'a, 'b: 'a, T: 'static>(x: Rc<RefCell<&'b T>>) -> impl Swap + 'a {
   |             --                                            -------------- opaque type defined here
   |             |
   |             hidden type `Rc<RefCell<&'b T>>` captures the lifetime `'b` as defined here
LL |     x
   |     ^
   |
help: to declare that `impl Swap + 'a` captures `'b`, you can add an explicit `'b` lifetime bound
   |
LL | fn hide<'a, 'b: 'a, T: 'static>(x: Rc<RefCell<&'b T>>) -> impl Swap + 'a + 'b {
   |                                                                          ++++

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0700`.