]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/async-await/multiple-lifetimes/ret-impl-trait-one.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / async-await / multiple-lifetimes / ret-impl-trait-one.stderr
index cdb141c0e3ea2802c7efd1d6a3a368d832b5e64e..3128b4df4e2d1248874d54199e1ab66f109d9095 100644 (file)
@@ -13,7 +13,7 @@ LL | | }
    |
    = help: consider adding the following bound: `'a: 'b`
 
-error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
+error[E0700]: hidden type for `impl Trait<'a>` captures lifetime that does not appear in bounds
   --> $DIR/ret-impl-trait-one.rs:16:80
    |
 LL |   async fn async_ret_impl_trait1<'a, 'b>(a: &'a u8, b: &'b u8) -> impl Trait<'a> {