rust/src/test/compile-fail/alt-vec-illegal-tail-element-loan.rs

14 lines
252 B
Rust
Raw Normal View History

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