mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
190 B
Rust
10 lines
190 B
Rust
// compile-flags:-Z verbose
|
|
|
|
fn main() {
|
|
let x = [1,2];
|
|
let y = match x {
|
|
[] => None, //~ ERROR pattern requires 0 elements but array has 2
|
|
[a,_] => Some(a)
|
|
};
|
|
}
|