From 343139b4d5af6e4b7801ae9ca295bb060cdf7369 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 20 Oct 2021 12:07:03 +0000 Subject: [PATCH] ices/88595.rs: fixed with errors === stdout === === stderr === error[E0478]: lifetime bound not satisfied --> /home/runner/work/glacier/glacier/ices/88595.rs:19:5 | 19 | type B<'b> = impl Clone; | ^^^^^^^^^^^^^^^^^^^^^^^^ | note: lifetime parameter instantiated with the lifetime `'a` as defined here --> /home/runner/work/glacier/glacier/ices/88595.rs:18:6 | 18 | impl<'a> A<'a> for C { | ^^ note: but lifetime parameter must outlive the lifetime `'b` as defined here --> /home/runner/work/glacier/glacier/ices/88595.rs:19:12 | 19 | type B<'b> = impl Clone; | ^^ error: non-defining opaque type use in defining scope --> /home/runner/work/glacier/glacier/ices/88595.rs:21:23 | 21 | fn a(&'a self) -> Self::B<'a> {} | ^^^^^^^^^^^ | note: lifetime used multiple times --> /home/runner/work/glacier/glacier/ices/88595.rs:18:6 | 18 | impl<'a> A<'a> for C { | ^^ 19 | type B<'b> = impl Clone; | ^^ error: could not find defining uses --> /home/runner/work/glacier/glacier/ices/88595.rs:19:18 | 19 | type B<'b> = impl Clone; | ^^^^^^^^^^ error: aborting due to 3 previous errors For more information about this error, try `rustc --explain E0478`. ============== --- {ices => fixed}/88595.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/88595.rs (100%) diff --git a/ices/88595.rs b/fixed/88595.rs similarity index 100% rename from ices/88595.rs rename to fixed/88595.rs