summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-call.rs
blob: 28e89559fe538653a62da22f7b34313c18828d7e (plain)
1
2
3
4
5
6
7
8
fn f(x: usize) -> usize {
    x
}

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