summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs')
-rw-r--r--testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs b/testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs
deleted file mode 100644
index 25a8b65f35..0000000000
--- a/testsuite/tests/ghc-regress/typecheck/should_compile/tc061.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module ShouldSucceed where
-
-class Eq1 a where
- deq :: a -> a -> Bool
-
-instance (Eq1 a) => Eq1 [a] where
- deq (a:as) (b:bs) = deq a b
-
-instance Eq1 Int where
- deq x y = True
-