[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc034.hs
diff --git a/ghc/tests/typecheck/should_compile/tc034.hs b/ghc/tests/typecheck/should_compile/tc034.hs
deleted file mode 100644 (file)
index 0e7c4a6..0000000
+++ /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
-
-