mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
454 B
Rust
25 lines
454 B
Rust
// 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)))))
|
|
);
|
|
}
|