[project @ 1997-07-30 23:52:45 by sof]
[ghc-hetmet.git] / ghc / compiler / tests / deSugar / ds026.hs
diff --git a/ghc/compiler/tests/deSugar/ds026.hs b/ghc/compiler/tests/deSugar/ds026.hs
deleted file mode 100644 (file)
index ff1f0be..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
---!!! ds026 -- classes -- incl. polymorphic method
-
-module ShouldSucceed where
-
-class Foo a where
-  op :: a -> a
-
-class Foo a => Boo a where
-  op1 :: a -> a
-
-class Boo a => Noo a where
-  op2 :: (Eq b) => a -> b -> a
-
-f x y = op (op2 x y)