From ab56d0b1ae3c7c8ea70575b5b7f223ec157a04f5 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 15 Aug 2021 12:06:34 +0000 Subject: [PATCH] ices/81899.rs: fixed with errors === stdout === === stderr === error[E0277]: expected a `FnMut<(&u8,)>` closure, found `[closure@/home/runner/work/glacier/glacier/ices/81899.rs:1:31: 1:37]` --> /home/runner/work/glacier/glacier/ices/81899.rs:1:24 | 1 | const _CONST: &[u8] = &f(&[], |_| {}); | ^ expected an `FnMut<(&u8,)>` closure, found `[closure@/home/runner/work/glacier/glacier/ices/81899.rs:1:31: 1:37]` 2 | 3 | const fn f(_: &[u8], _: F) -> &[u8] | - required by a bound in this 4 | where 5 | F: FnMut(&u8), | ---------- required by this bound in `f` | = help: the trait `for<'r> FnMut<(&'r u8,)>` is not implemented for `[closure@/home/runner/work/glacier/glacier/ices/81899.rs:1:31: 1:37]` error: aborting due to previous error For more information about this error, try `rustc --explain E0277`. ============== --- {ices => fixed}/81899.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/81899.rs (100%) diff --git a/ices/81899.rs b/fixed/81899.rs similarity index 100% rename from ices/81899.rs rename to fixed/81899.rs