]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/hidden-lifetimes.stderr
Merge commit '5ff7b632a95bac6955611d85040859128902c580' into sync-rustfmt-subtree
[rust.git] / src / test / ui / impl-trait / hidden-lifetimes.stderr
1 error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
2   --> $DIR/hidden-lifetimes.rs:28:54
3    |
4 LL | fn hide_ref<'a, 'b, T: 'static>(x: &'a mut &'b T) -> impl Swap + 'a {
5    |                 --                                   ^^^^^^^^^^^^^^
6    |                 |
7    |                 hidden type `&'a mut &'b T` captures the lifetime `'b` as defined here
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 Trait` captures lifetime that does not appear in bounds
15   --> $DIR/hidden-lifetimes.rs:45:70
16    |
17 LL | fn hide_rc_refcell<'a, 'b: 'a, T: 'static>(x: Rc<RefCell<&'b T>>) -> impl Swap + 'a {
18    |                        --                                            ^^^^^^^^^^^^^^
19    |                        |
20    |                        hidden type `Rc<RefCell<&'b T>>` captures the lifetime `'b` as defined here
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`.