2014-05-21 04:34:10 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-01-07 21:35:56 +00:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-05-21 04:34:10 +00:00
|
|
|
enum IntList {
|
2015-01-08 10:54:35 +00:00
|
|
|
Cons(isize, Box<IntList>),
|
2014-05-21 04:34:10 +00:00
|
|
|
Nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tail(source_list: &IntList) -> IntList {
|
|
|
|
match source_list {
|
2014-11-06 08:05:53 +00:00
|
|
|
&IntList::Cons(val, box ref next_list) => tail(next_list),
|
|
|
|
&IntList::Cons(val, box Nil) => IntList::Cons(val, box Nil),
|
2014-11-20 15:57:36 +00:00
|
|
|
//~^ ERROR unreachable pattern
|
|
|
|
//~^^ WARN pattern binding `Nil` is named the same as one of the variants of the type `IntList`
|
2014-10-09 19:17:22 +00:00
|
|
|
_ => panic!()
|
2014-05-21 04:34:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|