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