rust/src/test/run-pass/mutual-recursion-group.rs

27 lines
217 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
tag colour {
red;
green;
blue;
}
tag tree {
children(@list);
leaf(colour);
}
2010-06-23 23:03:09 -05:00
tag list {
cons(@tree, @list);
nil;
}
tag small_list {
kons(int,@small_list);
neel;
}
2010-06-23 23:03:09 -05:00
fn main() {
}