From 9694ddbced9bd25299fe36d29269d18a34898070 Mon Sep 17 00:00:00 2001 From: rustbot Date: Sun, 15 Nov 2020 12:16:24 +0000 Subject: [PATCH] ices/78722.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/78722.rs:2:12 | 2 | #![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/78722.rs:11:20 | 11 | let f: F = async { 1 }; | ^^^^^^^^^^^ error[E0493]: destructors cannot be evaluated at compile-time --> /home/runner/work/glacier/glacier/ices/78722.rs:11:13 | 11 | let f: F = async { 1 }; | ^ constants cannot evaluate destructors 12 | 1 13 | }], | - 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}/78722.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/78722.rs (100%) diff --git a/ices/78722.rs b/fixed/78722.rs similarity index 100% rename from ices/78722.rs rename to fixed/78722.rs