aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/mlist.rs
blob: 3754d044c4a7f102a4db8d6c0476f8117fe3c782 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// -*- rust -*-

tag mlist {
  cons(int,mutable @mlist);
  nil;
}

fn main() {
  cons(10, @cons(11, @cons(12, @nil)));
}