rust/tests/ui/pattern/usefulness/issue-12116.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
478 B
Rust
Raw Normal View History

#![feature(box_patterns)]
2016-12-11 14:23:18 +00:00
#![allow(dead_code)]
#![allow(unused_variables)]
#![deny(unreachable_patterns)]
enum IntList {
Cons(isize, Box<IntList>),
Nil
}
fn tail(source_list: &IntList) -> IntList {
match source_list {
&IntList::Cons(val, box ref next_list) => tail(next_list),
&IntList::Cons(val, box IntList::Nil) => IntList::Cons(val, Box::new(IntList::Nil)),
//~^ ERROR unreachable pattern
_ => panic!(),
}
}
fn main() {}