]> git.lizzy.rs Git - rust.git/blob - src/test/ui/self/arbitrary_self_types_pin_lifetime_impl_trait.nll.stderr
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[rust.git] / src / test / ui / self / arbitrary_self_types_pin_lifetime_impl_trait.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/arbitrary_self_types_pin_lifetime_impl_trait.rs:8:31
3    |
4 LL |     fn f(self: Pin<&Self>) -> impl Clone { self }
5    |                    -          ^^^^^^^^^^ opaque type requires that `'1` must outlive `'static`
6    |                    |
7    |                    let's call the lifetime of this reference `'1`
8 help: to allow this `impl Trait` to capture borrowed data with lifetime `'1`, add `'_` as a constraint
9    |
10 LL |     fn f(self: Pin<&Self>) -> impl Clone + '_ { self }
11    |                               ^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14