summary refs log tree commit diff
path: root/src/test/compile-fail/borrowck-vec-pattern-tail-element-loan.rs
blob: c02a0b4cfafd5c4068e675873286f945c76eec2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn a() -> &int {
    let vec = [1, 2, 3, 4];
    let tail = match vec {
        [_a, ..tail] => &tail[0], //~ ERROR borrowed value does not live long enough
        _ => fail!("foo")
    };
    tail
}

fn main() {
    let fifth = a();
    println(fmt!("%d", *fifth));
}