rust/tests/ui/issues/issue-23311.rs
2023-01-11 09:32:08 +00:00

12 lines
204 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', ..] => (),
_ => ()
}
}