Files
rust/src/test/ui/issues/issue-23311.rs

13 lines
232 B
Rust
Raw Normal View History

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