]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-call.rs
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / const-call.rs
1 fn f(x: usize) -> usize {
2     x
3 }
4
5 fn main() {
6     let _ = [0; f(2)];
7     //~^ ERROR calls in constants are limited to constant functions
8     //~| ERROR evaluation of constant value failed
9 }