From f61fe7352b2978a6ddbdad446da091cdb15c9686 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 14 May 2022 12:08:50 +0000 Subject: [PATCH] ices/90400-1.rs: fixed with errors === stdout === === stderr === error[E0277]: the trait bound `B: Bar` is not satisfied --> /home/runner/work/glacier/glacier/ices/90400-1.rs:20:9 | 20 | move || { bar.bar() } | ^^^^^^^^^^^^^^^^^^^^^ the trait `Bar` is not implemented for `B` | note: required by a bound in `::foo` --> /home/runner/work/glacier/glacier/ices/90400-1.rs:19:15 | 19 | fn foo(&self, bar: B) -> Self::FooFn { | ^^^ required by this bound in `::foo` help: consider restricting type parameter `B` | 17 | type FooFn = impl FnOnce(); | +++++ error: aborting due to previous error For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/90400-1.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/90400-1.rs (100%) diff --git a/ices/90400-1.rs b/fixed/90400-1.rs similarity index 100% rename from ices/90400-1.rs rename to fixed/90400-1.rs