blob: e72777c443c51d577ded534c44f191248d3aeb9c [file] [log] [blame] [edit]
//! 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);
}