2014-02-05 16:33:10 -06:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-09-06 15:52:07 -05:00
|
|
|
#![feature(advanced_slice_patterns)]
|
2015-03-26 20:34:27 -05:00
|
|
|
#![feature(slice_patterns)]
|
2014-09-06 15:52:07 -05:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn a<'a>() -> &'a [isize] {
|
2014-03-05 16:02:44 -06:00
|
|
|
let vec = vec!(1, 2, 3, 4);
|
2015-02-01 20:53:25 -06:00
|
|
|
let vec: &[isize] = &vec; //~ ERROR does not live long enough
|
2013-03-15 14:24:24 -05:00
|
|
|
let tail = match vec {
|
2016-03-11 04:54:59 -06:00
|
|
|
&[_, ref tail..] => tail,
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!("a")
|
2012-12-08 14:22:43 -06:00
|
|
|
};
|
2013-02-15 04:44:18 -06:00
|
|
|
tail
|
2012-12-08 14:22:43 -06:00
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn b<'a>() -> &'a [isize] {
|
2014-03-05 16:02:44 -06:00
|
|
|
let vec = vec!(1, 2, 3, 4);
|
2015-02-01 20:53:25 -06:00
|
|
|
let vec: &[isize] = &vec; //~ ERROR does not live long enough
|
2013-03-15 14:24:24 -05:00
|
|
|
let init = match vec {
|
2016-03-11 04:54:59 -06:00
|
|
|
&[ref init.., _] => init,
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!("b")
|
2013-02-26 12:58:46 -06:00
|
|
|
};
|
|
|
|
init
|
2012-12-08 14:22:43 -06:00
|
|
|
}
|
2013-02-26 12:58:46 -06:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn c<'a>() -> &'a [isize] {
|
2014-03-05 16:02:44 -06:00
|
|
|
let vec = vec!(1, 2, 3, 4);
|
2015-02-01 20:53:25 -06:00
|
|
|
let vec: &[isize] = &vec; //~ ERROR does not live long enough
|
2013-03-15 14:24:24 -05:00
|
|
|
let slice = match vec {
|
2016-03-11 04:54:59 -06:00
|
|
|
&[_, ref slice.., _] => slice,
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!("c")
|
2013-02-26 12:58:46 -06:00
|
|
|
};
|
|
|
|
slice
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|