rust/src/test/compile-fail/borrowck-vec-pattern-tail-element-loan.rs
2013-02-15 02:49:55 -08:00

14 lines
249 B
Rust

fn a() -> &int {
let vec = [1, 2, 3, 4];
let tail = match vec { //~ ERROR illegal borrow
[_a, ..tail] => &tail[0],
_ => fail!(~"foo")
};
tail
}
fn main() {
let fifth = a();
io::println(fmt!("%d", *fifth));
}