]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/match-vec-unreachable.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / match-vec-unreachable.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 fn main() {
13     let x: Vec<(isize, isize)> = Vec::new();
14     let x: &[(isize, isize)] = x.as_slice();
15     match x {
16         [a, (2, 3), _] => (),
17         [(1, 2), (2, 3), b] => (), //~ ERROR unreachable pattern
18         _ => ()
19     }
20
21     let x: Vec<String> = vec!["foo".to_string(),
22                               "bar".to_string(),
23                               "baz".to_string()];
24     let x: &[String] = x.as_slice();
25     match x {
26         [a, _, _, ..] => { println!("{}", a); }
27         [_, _, _, _, _] => { } //~ ERROR unreachable pattern
28         _ => { }
29     }
30
31     let x: Vec<char> = vec!('a', 'b', 'c');
32     let x: &[char] = x.as_slice();
33     match x {
34         ['a', 'b', 'c', _tail..] => {}
35         ['a', 'b', 'c'] => {} //~ ERROR unreachable pattern
36         _ => {}
37     }
38 }