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