rust/src/test/ui/issues/issue-23311.rs
2019-07-27 18:56:16 +03:00

12 lines
232 B
Rust

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