summaryrefslogtreecommitdiff
path: root/ghc/compiler/ilxGen/tests/test20.hs
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/compiler/ilxGen/tests/test20.hs')
-rw-r--r--ghc/compiler/ilxGen/tests/test20.hs9
1 files changed, 0 insertions, 9 deletions
diff --git a/ghc/compiler/ilxGen/tests/test20.hs b/ghc/compiler/ilxGen/tests/test20.hs
deleted file mode 100644
index 157a16da1d..0000000000
--- a/ghc/compiler/ilxGen/tests/test20.hs
+++ /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