rust/tests/ui/consts/const-fn-error.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
441 B
Rust
Raw Normal View History

const X : usize = 2;
const fn f(x: usize) -> usize {
2018-01-16 09:24:38 +01:00
let mut sum = 0;
2018-10-01 12:52:47 +02:00
for i in 0..x {
//~^ ERROR cannot convert
2021-07-29 23:15:53 +02:00
//~| ERROR `for` is not allowed in a `const fn`
//~| ERROR mutable references are not allowed in constant functions
//~| ERROR cannot call non-const fn
2023-04-08 08:50:46 +00:00
//~| ERROR the trait bound
sum += i;
}
2018-01-16 09:24:38 +01:00
sum
}
#[allow(unused_variables)]
fn main() {
let a : [i32; f(X)];
}