rust/tests/ui/match/match-large-array.rs
2026-01-22 19:50:00 +01:00

14 lines
307 B
Rust

//! regression test for <https://github.com/rust-lang/rust/issues/17877>
//@ run-pass
fn main() {
assert_eq!(match [0u8; 1024] {
_ => 42_usize,
}, 42_usize);
assert_eq!(match [0u8; 1024] {
[1, ..] => 0_usize,
[0, ..] => 1_usize,
_ => 2_usize
}, 1_usize);
}