]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const_let_refutable.rs
Rollup merge of #64603 - gilescope:unused-lifetime-warning, r=matthewjasper
[rust.git] / src / test / ui / consts / const_let_refutable.rs
1 fn main() {}
2
3 const fn slice([a, b]: &[i32]) -> i32 { //~ ERROR refutable pattern in function argument
4     a + b //~ ERROR can only call other `const fn` within a `const fn`
5     //~^ ERROR use of possibly-uninitialized variable: `a`
6     //~| ERROR use of possibly-uninitialized variable: `b`
7 }