rust/src/test/run-pass/mlist.rs
2010-07-01 23:50:58 -07:00

8 lines
125 B
Rust

// -*- rust -*-
type mlist = tag(cons(int,mutable @mlist), nil());
fn main() {
cons(10, @cons(11, @cons(12, @nil())));
}