summary refs log tree commit diff
path: root/src/test/ui/consts/const-call.rs
blob: db642988971e0266d10968e32b7afca1bca8070b (plain)
1
2
3
4
5
6
7
8
fn f(x: usize) -> usize {
    x
}

fn main() {
    let _ = [0; f(2)];
    //~^ ERROR calls in constants are limited to constant functions
}