From df7fc972e0b1cfd3bf308220ee3540c249156ede Mon Sep 17 00:00:00 2001 From: rustbot Date: Thu, 31 Mar 2022 12:06:11 +0000 Subject: [PATCH] ices/83919.rs: fixed with errors === stdout === === stderr === error[E0601]: `main` function not found in crate `83919` --> /home/runner/work/glacier/glacier/ices/83919.rs:26:2 | 26 | } | ^ consider adding a `main` function to `/home/runner/work/glacier/glacier/ices/83919.rs` error[E0277]: `{integer}` is not a future --> /home/runner/work/glacier/glacier/ices/83919.rs:20:9 | 20 | / async move { 21 | | 42 22 | | // 42 does not impl Future and rustc does actually point out the error, but rustc also panics. 23 | | // Putting a valid Future here works fine. 24 | | } | |_________^ `{integer}` is not a future | = help: the trait `Future` is not implemented for `{integer}` = note: {integer} must be a future or must implement `IntoFuture` to be awaited 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}/83919.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/83919.rs (100%) diff --git a/ices/83919.rs b/fixed/83919.rs similarity index 100% rename from ices/83919.rs rename to fixed/83919.rs