2014-05-20 23:34:10 -05: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 15:35:56 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-05-20 23:34:10 -05:00
|
|
|
enum IntList {
|
|
|
|
Cons(int, Box<IntList>),
|
|
|
|
Nil
|
|
|
|
}
|
|
|
|
|
|
|
|
fn tail(source_list: &IntList) -> IntList {
|
|
|
|
match source_list {
|
2014-11-06 02:05:53 -06:00
|
|
|
&IntList::Cons(val, box ref next_list) => tail(next_list),
|
|
|
|
&IntList::Cons(val, box Nil) => IntList::Cons(val, box Nil),
|
2014-11-20 09:57:36 -06:00
|
|
|
//~^ ERROR unreachable pattern
|
|
|
|
//~^^ WARN pattern binding `Nil` is named the same as one of the variants of the type `IntList`
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!()
|
2014-05-20 23:34:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|