0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-28 09:36:05 +01:00
rust/tests/ui/match/issue-37598.rs
2024-03-03 16:30:48 -03:00

12 lines
163 B
Rust

//@ check-pass
fn check(list: &[u8]) {
match list {
&[] => {},
&[_u1, _u2, ref _next @ ..] => {},
&[_u1] => {},
}
}
fn main() {}