summaryrefslogtreecommitdiffstats
path: root/src/test/ui/array-slice-vec/vec-matching-legal-tail-element-borrow.rs
blob: ed34f074a929aa53fb1617434f54846da5aa041a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass

#![allow(unused_variables)]

pub fn main() {
    let x = &[1, 2, 3, 4, 5];
    let x: &[isize] = &[1, 2, 3, 4, 5];
    if !x.is_empty() {
        let el = match x {
            &[1, ref tail @ ..] => &tail[0],
            _ => unreachable!()
        };
        println!("{}", *el);
    }
}