]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/vec-matching-autoslice.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / vec-matching-autoslice.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 #![feature(slice_patterns)]
13
14 pub fn main() {
15     let x = [1, 2, 3];
16     match x {
17         [2, _, _] => panic!(),
18         [1, a, b] => {
19             assert_eq!([a, b], [2, 3]);
20         }
21         [_, _, _] => panic!(),
22     }
23
24     let y = ([(1, true), (2, false)], 0.5f64);
25     match y {
26         ([(1, a), (b, false)], _) => {
27             assert_eq!(a, true);
28             assert_eq!(b, 2);
29         }
30         ([_, _], 0.5) => panic!(),
31         ([_, _], _) => panic!(),
32     }
33 }