mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
270 B
Rust
11 lines
270 B
Rust
// run-pass
|
|
|
|
#![allow(non_camel_case_types)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
enum list { #[allow(unused_tuple_struct_fields)] cons(isize, Box<list>), nil, }
|
|
|
|
pub fn main() {
|
|
list::cons(10, Box::new(list::cons(11, Box::new(list::cons(12, Box::new(list::nil))))));
|
|
}
|