summary refs log tree commit diff
path: root/src/test/ui/consts/const_let_irrefutable.rs
blob: 424a16f7ed39b10aa34e222de064709d3e816f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
// compile-pass

fn main() {}

const fn tup((a, b): (i32, i32)) -> i32 {
    a + b
}

const fn array([a, b]: [i32; 2]) -> i32 {
    a + b
}