]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-fn-destructuring-arg.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[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() {}