rust/src/test/compile-fail/borrowck-vec-pattern-tail-element-loan.rs

14 lines
275 B
Rust
Raw Normal View History

2012-12-15 23:13:55 +00:00
fn a() -> &int {
let vec = [1, 2, 3, 4];
2013-03-15 19:24:24 +00:00
let tail = match vec {
[_a, ..tail] => &tail[0], //~ ERROR borrowed value does not live long enough
_ => fail!(~"foo")
2012-12-15 23:13:55 +00:00
};
2013-02-15 10:44:18 +00:00
tail
2012-12-15 23:13:55 +00:00
}
fn main() {
let fifth = a();
io::println(fmt!("%d", *fifth));
}