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

27 lines
227 B
Rust
Raw Normal View History

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