summaryrefslogtreecommitdiff
path: root/ghc/compiler/ilxGen/tests/test6.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/compiler/ilxGen/tests/test6.hs')
-rw-r--r--ghc/compiler/ilxGen/tests/test6.hs8
1 files changed, 0 insertions, 8 deletions
diff --git a/ghc/compiler/ilxGen/tests/test6.hs b/ghc/compiler/ilxGen/tests/test6.hs
deleted file mode 100644
index 17e51ab51d..0000000000
--- a/ghc/compiler/ilxGen/tests/test6.hs
+++ /dev/null
@@ -1,8 +0,0 @@
-data List a = Cons a (List a)
-
-hdL (Cons x y) = x
-tlL (Cons x y) = y
-
-test = Cons "hello world\n" test
-main = putStr (hdL (tlL test))
-