2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2015-02-10 15:52:00 -06:00
|
|
|
#![feature(box_patterns)]
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2014-12-30 22:32:49 -06:00
|
|
|
#[derive(Clone)]
|
2014-03-01 00:05:49 -06:00
|
|
|
enum Noun
|
|
|
|
{
|
2015-03-25 19:06:52 -05:00
|
|
|
Atom(isize),
|
2014-05-05 20:56:44 -05:00
|
|
|
Cell(Box<Noun>, Box<Noun>)
|
2014-03-01 00:05:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fas(n: &Noun) -> Noun
|
|
|
|
{
|
2014-05-05 20:56:44 -05:00
|
|
|
match n {
|
2014-11-06 02:05:53 -06:00
|
|
|
&Noun::Cell(box Noun::Atom(2), box Noun::Cell(ref a, _)) => (**a).clone(),
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!("Invalid fas pattern")
|
2014-03-01 00:05:49 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2022-07-06 21:36:10 -05:00
|
|
|
fas(
|
|
|
|
&Noun::Cell(Box::new(Noun::Atom(2)),
|
|
|
|
Box::new(Noun::Cell(Box::new(Noun::Atom(2)), Box::new(Noun::Atom(3)))))
|
|
|
|
);
|
2014-03-01 00:05:49 -06:00
|
|
|
}
|