mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
25 lines
560 B
Rust
25 lines
560 B
Rust
// issue: rust-lang/rust#11552
|
|
// Test nested box pattern matching inside a larger `match` statement.
|
|
//@ run-pass
|
|
#![feature(box_patterns)]
|
|
|
|
#[derive(Clone)]
|
|
enum Noun {
|
|
Atom(isize),
|
|
Cell(Box<Noun>, Box<Noun>),
|
|
}
|
|
|
|
fn fas(n: &Noun) -> Noun {
|
|
match n {
|
|
&Noun::Cell(box Noun::Atom(2), box Noun::Cell(ref a, _)) => (**a).clone(),
|
|
_ => panic!("Invalid fas pattern"),
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
fas(&Noun::Cell(
|
|
Box::new(Noun::Atom(2)),
|
|
Box::new(Noun::Cell(Box::new(Noun::Atom(2)), Box::new(Noun::Atom(3)))),
|
|
));
|
|
}
|