From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/consts/const-fn-error.rs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/test/ui/consts/const-fn-error.rs (limited to 'src/test/ui/consts/const-fn-error.rs') diff --git a/src/test/ui/consts/const-fn-error.rs b/src/test/ui/consts/const-fn-error.rs deleted file mode 100644 index 50b7ce1f8..000000000 --- a/src/test/ui/consts/const-fn-error.rs +++ /dev/null @@ -1,18 +0,0 @@ -const X : usize = 2; - -const fn f(x: usize) -> usize { - let mut sum = 0; - for i in 0..x { - //~^ ERROR cannot convert - //~| ERROR `for` is not allowed in a `const fn` - //~| ERROR mutable references are not allowed in constant functions - //~| ERROR cannot call non-const fn - sum += i; - } - sum -} - -#[allow(unused_variables)] -fn main() { - let a : [i32; f(X)]; -} -- cgit v1.2.3