rust/tests/ui/issues/issue-23311.rs

12 lines
205 B
Rust

//@ run-pass
// Test that we do not ICE when pattern matching an array against a slice.
fn main() {
match "foo".as_bytes() {
b"food" => (),
&[b'f', ..] => (),
_ => ()
}
}