Remove ilxGen; part of trac #2243
[ghc-hetmet.git] / compiler / ilxGen / tests / test20.hs
diff --git a/compiler/ilxGen/tests/test20.hs b/compiler/ilxGen/tests/test20.hs
deleted file mode 100644 (file)
index 157a16d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-
-data N = Z | S N
-
-res Z x y = (# x, y #)
-res (S n) x y = res n x y
-
-(# x, y #) = res (S Z) "no!" "hello world\n"
-
-main = putStr y