mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
17 lines
268 B
Rust
17 lines
268 B
Rust
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)];
|
|
}
|