mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
233 B
Rust
14 lines
233 B
Rust
// 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);
|
|
}
|