]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/self/arbitrary_self_types_pin_lifetime_impl_trait.nll.stderr
Rollup merge of #87346 - rylev:rename-force-warn, r=nikomatsakis
[rust.git] / src / test / ui / self / arbitrary_self_types_pin_lifetime_impl_trait.nll.stderr
index 73766c31b93b60779f52797906257f384c9cd78c..962593e411e92a16aac8f7d1a3f35edaf77268ae 100644 (file)
@@ -9,7 +9,7 @@ LL |     fn f(self: Pin<&Self>) -> impl Clone { self }
 help: to allow this `impl Trait` to capture borrowed data with lifetime `'1`, add `'_` as a bound
    |
 LL |     fn f(self: Pin<&Self>) -> impl Clone + '_ { self }
-   |                               ^^^^^^^^^^^^^^^
+   |                                          ^^^^
 
 error: aborting due to previous error