blob: b71517824232fbf70fb5739043da516eb16a0088 [file] [log] [blame]
const X : usize = 2;
const fn f(x: usize) -> usize {
let mut sum = 0;
for i in 0..x {
//~^ ERROR cannot use `for`
//~| ERROR cannot use `for`
sum += i;
}
sum
}
#[allow(unused_variables)]
fn main() {
let a : [i32; f(X)];
}