aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/mlist.rs
blob: 6fc45d7c65bf713641ddc2dc8da3869fe26b63c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// xfail-boot
// xfail-stage0
// -*- rust -*-

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

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