summary refs log tree commit diff
path: root/src/test/ui/list.rs
blob: 2ac5733b4199b5ec835b9efeb9c287a68ee315fc (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

#![allow(non_camel_case_types)]
// pretty-expanded FIXME #23616

#![feature(box_syntax)]

enum list { cons(isize, Box<list>), nil, }

pub fn main() { list::cons(10, box list::cons(11, box list::cons(12, box list::nil))); }