about summary refs log tree commit diff
path: root/tests/ui/list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/list.rs')
-rw-r--r--tests/ui/list.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/ui/list.rs b/tests/ui/list.rs
deleted file mode 100644
index 443c4c9f28f..00000000000
--- a/tests/ui/list.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-//@ run-pass
-
-#![allow(non_camel_case_types)]
-
-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))))));
-}