summary refs log tree commit diff
path: root/src/test/ui/consts/const-fn-destructuring-arg.rs
blob: d2c89cb54a0eb39601fe5e56738ebd6d72bb7390 (plain)
1
2
3
4
5
6
7
// build-pass (FIXME(62277): could be check-pass?)

const fn i((a, b): (u32, u32)) -> u32 {
    a + b
}

fn main() {}