[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / deSugar / should_compile / ds026.hs
diff --git a/ghc/tests/deSugar/should_compile/ds026.hs b/ghc/tests/deSugar/should_compile/ds026.hs
deleted file mode 100644 (file)
index f21ca0b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
--- !!! ds026 -- classes -- incl. polymorphic method
-
-module ShouldCompile 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)