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