rust/src/test/compile-fail/borrowck-vec-pattern-tail-element-loan.rs
Alex Crichton daf5f5a4d1 Drop the '2' suffix from logging macros
Who doesn't like a massive renaming?
2013-10-22 08:09:56 -07:00

14 lines
266 B
Rust

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!("{}", *fifth);
}