rust/src/test/run-pass/vec-matching-legal-tail-element-borrow.rs

11 lines
239 B
Rust
Raw Normal View History

pub fn main() {
2012-12-15 17:13:55 -06:00
let x = &[1, 2, 3, 4, 5];
if !x.is_empty() {
let el = match x {
[1, ..ref tail] => &tail[0],
_ => ::core::util::unreachable()
2012-12-15 17:13:55 -06:00
};
io::println(fmt!("%d", *el));
}
}