blob: 3d5b64ed4c26fd92807592ac7ccec6fcfc630212 [file] [log] [blame]
fn f(x: usize) -> usize {
x
}
fn main() {
let _ = [0; f(2)];
//~^ ERROR calls in constants are limited to constant functions
//~| ERROR evaluation of constant value failed
}