rustc/tests/ui/consts/const-call.rs
2023-07-27 22:48:29 +08:00

9 lines
112 B
Rust

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