Sign in
fuchsia
/
third_party
/
rust
/
e356279bdfe6840236877b298f0c577e0f9221ff
/
.
/
tests
/
ui
/
list.rs
blob: 7e5c2d8548b5080796bd1a0df6915039f48c85ef [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
non_camel_case_types
)]
//@ pretty-expanded FIXME #23616
enum
list
{
#[
allow
(
dead_code
)]
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
))))));
}