From 305234616e4053062f5c23805943e6ec1f68ccac Mon Sep 17 00:00:00 2001 From: rustbot Date: Mon, 28 Dec 2020 12:26:42 +0000 Subject: [PATCH] ices/69913.rs: fixed with errors === stdout === === stderr === error: generic parameters may not be used in const operations --> /home/runner/work/glacier/glacier/ices/69913.rs:1:53 | 1 | fn foo(bar: [usize; A + B]) {} | ^ cannot perform const operation using `A` | = help: const parameters may only be used as standalone arguments, i.e. `A` = help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions error: generic parameters may not be used in const operations --> /home/runner/work/glacier/glacier/ices/69913.rs:1:57 | 1 | fn foo(bar: [usize; A + B]) {} | ^ cannot perform const operation using `B` | = help: const parameters may only be used as standalone arguments, i.e. `B` = help: use `#![feature(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions error: aborting due to 2 previous errors ============== --- {ices => fixed}/69913.rs | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {ices => fixed}/69913.rs (100%) diff --git a/ices/69913.rs b/fixed/69913.rs similarity index 100% rename from ices/69913.rs rename to fixed/69913.rs