blob: 851b66f76238c11983c594af00e218946eaef36e [file] [log] [blame]
fn f(x: usize) -> usize {
x
}
fn main() {
let _ = [0; f(2)];
//~^ ERROR cannot call non-const function
}