From 45ceda037af5564e81eff21ceb4e8aacc419bda9 Mon Sep 17 00:00:00 2001 From: rustbot Date: Mon, 7 Nov 2022 03:34:32 +0000 Subject: [PATCH] ices/99820.rs: fixed with errors === stdout === === stderr === error[E0059]: type parameter to bare `FnOnce` trait must be a tuple --> /home/runner/work/glacier/glacier/ices/99820.rs:7:12 | 7 | impl const FnOnce<&usize> for Closure { | ^^^^^^^^^^^^^^ the trait `Tuple` is not implemented for `&usize` | note: required by a bound in `FnOnce` error[E0277]: `&usize` is not a tuple --> /home/runner/work/glacier/glacier/ices/99820.rs:15:37 | 15 | enum Bug { | --------- ^^ the trait `Tuple` is not implemented for `&usize` | | | required by a bound introduced by this call | note: required by a bound in `call_once` error[E0277]: functions with the "rust-call" ABI must take a single non-self tuple argument --> /home/runner/work/glacier/glacier/ices/99820.rs:10:5 | 10 | extern "rust-call" fn call_once(self, arg: &usize) -> Self::Output { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Tuple` is not implemented for `&usize` error: aborting due to 3 previous errors Some errors have detailed explanations: E0059, E0277. For more information about an error, try `rustc --explain E0059`. ============== --- {ices => fixed}/99820.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/99820.rs (100%) diff --git a/ices/99820.rs b/fixed/99820.rs similarity index 100% rename from ices/99820.rs rename to fixed/99820.rs