mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
406 B
Rust
19 lines
406 B
Rust
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)];
|
|
}
|