]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-fn-destructuring-arg.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / consts / const-fn-destructuring-arg.rs
1 // check-pass
2
3 const fn i((a, b): (u32, u32)) -> u32 {
4     a + b
5 }
6
7 fn main() {}