mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
204 B
Rust
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', ..] => (),
|
|
_ => ()
|
|
}
|
|
}
|