]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-vec-pattern-element-loan.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / borrowck-vec-pattern-element-loan.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 #![feature(advanced_slice_patterns)]
12
13 fn a<'a>() -> &'a [isize] {
14     let vec = vec!(1, 2, 3, 4);
15     let vec: &[isize] = vec.as_slice(); //~ ERROR does not live long enough
16     let tail = match vec {
17         [_, tail..] => tail,
18         _ => panic!("a")
19     };
20     tail
21 }
22
23 fn b<'a>() -> &'a [isize] {
24     let vec = vec!(1, 2, 3, 4);
25     let vec: &[isize] = vec.as_slice(); //~ ERROR does not live long enough
26     let init = match vec {
27         [init.., _] => init,
28         _ => panic!("b")
29     };
30     init
31 }
32
33 fn c<'a>() -> &'a [isize] {
34     let vec = vec!(1, 2, 3, 4);
35     let vec: &[isize] = vec.as_slice(); //~ ERROR does not live long enough
36     let slice = match vec {
37         [_, slice.., _] => slice,
38         _ => panic!("c")
39     };
40     slice
41 }
42
43 fn main() {}