From fc9db7dda48dba49d95576cde570149d3f8eb7aa Mon Sep 17 00:00:00 2001 From: rustbot Date: Sat, 4 Dec 2021 12:06:51 +0000 Subject: [PATCH] ices/82335.rs: fixed with errors === stdout === === stderr === error[E0601]: `main` function not found in crate `82335` --> /home/runner/work/glacier/glacier/ices/82335.rs:1:1 | 1 | / union Union { 2 | | data: std::iter::Peekable 3 | | } | |_^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/82335.rs` error[E0277]: `I` is not an iterator --> /home/runner/work/glacier/glacier/ices/82335.rs:2:11 | 2 | data: std::iter::Peekable | ^^^^^^^^^^^^^^^^^^^^^^ `I` is not an iterator | note: required by a bound in `Peekable` help: consider restricting type parameter `I` | 1 | union Union { | +++++++++++++++++++++ error: aborting due to 2 previous errors Some errors have detailed explanations: E0277, E0601. For more information about an error, try `rustc --explain E0277`. ============== --- {ices => fixed}/82335.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/82335.rs (100%) diff --git a/ices/82335.rs b/fixed/82335.rs similarity index 100% rename from ices/82335.rs rename to fixed/82335.rs