]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/hidden-lifetimes.stderr
Rollup merge of #98441 - calebzulawski:simd_as, r=oli-obk
[rust.git] / src / test / ui / impl-trait / hidden-lifetimes.stderr
1 error[E0700]: hidden type for `impl Swap` captures lifetime that does not appear in bounds
2   --> $DIR/hidden-lifetimes.rs:29:5
3    |
4 LL | fn hide_ref<'a, 'b, T: 'static>(x: &'a mut &'b T) -> impl Swap + 'a {
5    |                 -- hidden type `&'a mut &'b T` captures the lifetime `'b` as defined here
6 LL |     x
7    |     ^
8    |
9 help: to declare that the `impl Trait` captures `'b`, you can add an explicit `'b` lifetime bound
10    |
11 LL | fn hide_ref<'a, 'b, T: 'static>(x: &'a mut &'b T) -> impl Swap + 'a + 'b {
12    |                                                                     ++++
13
14 error[E0700]: hidden type for `impl Swap` captures lifetime that does not appear in bounds
15   --> $DIR/hidden-lifetimes.rs:46:5
16    |
17 LL | fn hide_rc_refcell<'a, 'b: 'a, T: 'static>(x: Rc<RefCell<&'b T>>) -> impl Swap + 'a {
18    |                        -- hidden type `Rc<RefCell<&'b T>>` captures the lifetime `'b` as defined here
19 LL |     x
20    |     ^
21    |
22 help: to declare that the `impl Trait` captures `'b`, you can add an explicit `'b` lifetime bound
23    |
24 LL | fn hide_rc_refcell<'a, 'b: 'a, T: 'static>(x: Rc<RefCell<&'b T>>) -> impl Swap + 'a + 'b {
25    |                                                                                     ++++
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0700`.