blob: 60b06a497d6de58c24f73e4284402ad844cb5cf1 [file] [log] [blame]
// check-pass
fn main() {
match &[0, 1] as &[i32] {
[a @ .., x] => {}
&[] => {}
}
}