X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fcompiler%2FilxGen%2Ftests%2Ftest7.hs;fp=ghc%2Fcompiler%2FilxGen%2Ftests%2Ftest7.hs;h=0000000000000000000000000000000000000000;hb=0065d5ab628975892cea1ec7303f968c3338cbe1;hp=c1460380523c28f2beeadf017b041acfe894bbab;hpb=28a464a75e14cece5db40f2765a29348273ff2d2;p=ghc-hetmet.git diff --git a/ghc/compiler/ilxGen/tests/test7.hs b/ghc/compiler/ilxGen/tests/test7.hs deleted file mode 100644 index c146038..0000000 --- a/ghc/compiler/ilxGen/tests/test7.hs +++ /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"))) -