rustc/tests/ui/consts/const-call.rs
2025-02-17 11:14:05 +01:00

9 lines
118 B
Rust

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