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