Remove ilxGen; part of trac #2243
[ghc-hetmet.git] / compiler / ilxGen / tests / test7.hs
diff --git a/compiler/ilxGen/tests/test7.hs b/compiler/ilxGen/tests/test7.hs
deleted file mode 100644 (file)
index c146038..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-data List a = Cons a (List a)
-
-hdL (Cons x y) = x
-tlL (Cons x y) = y
-
-mk f x = f x (mk f x)
-main = putStr (hdL (tlL (mk Cons "hello world!\n")))
-