From c0d3160786ab4b6fd6f6299d9968212380d21b50 Mon Sep 17 00:00:00 2001 From: rustbot Date: Wed, 1 Sep 2021 12:06:15 +0000 Subject: [PATCH] ices/73727.rs: fixed with errors === stdout === === stderr === error[E0557]: feature has been removed --> /home/runner/work/glacier/glacier/ices/73727.rs:1:12 | 1 | #![feature(const_generics)] | ^^^^^^^^^^^^^^ feature has been removed | = note: removed in favor of `#![feature(adt_const_params]` and `#![feature(generic_const_exprs)]` error: `&'static [u32]` is forbidden as the type of a const generic parameter --> /home/runner/work/glacier/glacier/ices/73727.rs:4:15 | 4 | fn a() {} | ^^^^^^^^^^^^^^ | = note: the only supported types are integers, `bool` and `char` = help: more complex types are supported with `#![feature(adt_const_params)]` error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0557`. ============== --- {ices => fixed}/73727.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/73727.rs (100%) diff --git a/ices/73727.rs b/fixed/73727.rs similarity index 100% rename from ices/73727.rs rename to fixed/73727.rs