Remove ilxGen; part of trac #2243
[ghc-hetmet.git] / compiler / ilxGen / tests / test6.hs
diff --git a/compiler/ilxGen/tests/test6.hs b/compiler/ilxGen/tests/test6.hs
deleted file mode 100644 (file)
index 17e51ab..0000000
+++ /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))
-