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

13 lines
200 B
Rust
Raw Normal View History

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