blob: e827fa1670fb384e6fa2522580cead2d6d448001 [file] [log] [blame] [edit]
//@ 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', ..] => (),
_ => ()
}
}