summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs')
-rw-r--r--testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs b/testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs
deleted file mode 100644
index 0e7c4a66ed..0000000000
--- a/testsuite/tests/ghc-regress/typecheck/should_compile/tc034.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module ShouldSucceed where
-
-data AList a = ANull | ANode a (AList a)
-
-type IntList = AList Int
-
-g (ANull) = 2
-g (ANode b (ANode c d)) | b = 3
- | True = 4
-
-