From 78d143633a5915d2229ac20decc9e83d8190bb28 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 15 Nov 2020 12:16:19 +0000 Subject: [PATCH] ices/78721.rs: fixed with errors === stdout === === stderr === warning: the feature `impl_trait_in_bindings` is incomplete and may not be safe to use and/or cause compiler crashes --> /home/runner/work/glacier/glacier/ices/78721.rs:1:12 | 1 | #![feature(impl_trait_in_bindings)] | ^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(incomplete_features)]` on by default = note: see issue #63065 for more information error: `async` blocks are not allowed in constants --> /home/runner/work/glacier/glacier/ices/78721.rs:5:57 | 5 | let f: impl core::future::Future = async { 1 }; | ^^^^^^^^^^^ error[E0493]: destructors cannot be evaluated at compile-time --> /home/runner/work/glacier/glacier/ices/78721.rs:5:13 | 5 | let f: impl core::future::Future = async { 1 }; | ^ constants cannot evaluate destructors 6 | 1 7 | }], | - value is dropped here error: aborting due to 2 previous errors; 1 warning emitted For more information about this error, try `rustc --explain E0493`. ============== --- {ices => fixed}/78721.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/78721.rs (100%) diff --git a/ices/78721.rs b/fixed/78721.rs similarity index 100% rename from ices/78721.rs rename to fixed/78721.rs