rust/tests/ui/consts/const_let_irrefutable.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
175 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
fn main() {}
const fn tup((a, b): (i32, i32)) -> i32 {
a + b
}
const fn array([a, b]: [i32; 2]) -> i32 {
a + b
}