From 77de6aeb169cef028ac9a07b2e19006412198927 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 1 Sep 2021 12:06:21 +0000 Subject: [PATCH] ices/79674.rs: fixed with errors === stdout === === stderr === error[E0557]: feature has been removed --> /home/runner/work/glacier/glacier/ices/79674.rs:1:12 | 1 | #![feature(const_evaluatable_checked, const_fn, const_fn_trait_bound, const_generics)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ feature has been removed | = note: renamed to `generic_const_exprs` error[E0557]: feature has been removed --> /home/runner/work/glacier/glacier/ices/79674.rs:1:39 | 1 | #![feature(const_evaluatable_checked, const_fn, const_fn_trait_bound, const_generics)] | ^^^^^^^^ feature has been removed | = note: split into finer-grained feature gates error[E0557]: feature has been removed --> /home/runner/work/glacier/glacier/ices/79674.rs:1:71 | 1 | #![feature(const_evaluatable_checked, const_fn, const_fn_trait_bound, const_generics)] | ^^^^^^^^^^^^^^ feature has been removed | = note: removed in favor of `#![feature(adt_const_params]` and `#![feature(generic_const_exprs)]` error: generic parameters may not be used in const operations --> /home/runner/work/glacier/glacier/ices/79674.rs:23:26 | 23 | Lift<{is_same_type::()}>: IsFalse {} | ^ cannot perform const operation using `A` | = note: type parameters may not be used in const expressions = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions error: generic parameters may not be used in const operations --> /home/runner/work/glacier/glacier/ices/79674.rs:23:29 | 23 | Lift<{is_same_type::()}>: IsFalse {} | ^ cannot perform const operation using `B` | = note: type parameters may not be used in const expressions = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions error: aborting due to 5 previous errors For more information about this error, try `rustc --explain E0557`. ============== --- {ices => fixed}/79674.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/79674.rs (100%) diff --git a/ices/79674.rs b/fixed/79674.rs similarity index 100% rename from ices/79674.rs rename to fixed/79674.rs