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