]>
Commit | Line | Data |
---|---|---|
1a4d82fc | 1 | // Copyright 2014 The Rust Project Developers. See the COPYRIGHT |
223e47cc LB |
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 | ||
1a4d82fc | 11 | // compile-flags:-Z verbose |
223e47cc | 12 | |
c34b1796 AL |
13 | #![feature(slice_patterns)] |
14 | ||
223e47cc | 15 | fn main() { |
1a4d82fc JJ |
16 | let x = [1,2]; |
17 | let y = match x { | |
18 | [] => None, | |
85aaf69f | 19 | //~^ ERROR mismatched types |
54a0048b | 20 | //~| expected `[_#1i; 2]` |
85aaf69f SL |
21 | //~| found `[_#7t; 0]` |
22 | //~| expected an array with a fixed size of 2 elements | |
23 | //~| found one with 0 elements | |
1a4d82fc | 24 | [a,_] => Some(a) |
223e47cc | 25 | }; |
223e47cc | 26 | } |