[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / codeGen / should_run / cg039.hs
diff --git a/ghc/tests/codeGen/should_run/cg039.hs b/ghc/tests/codeGen/should_run/cg039.hs
deleted file mode 100644 (file)
index b7b3017..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
--- !!! From a Rick Morgan bug report:
--- !!! Single-method class with a locally-polymorphic
--- !!! method.
-
-module Main where
-
-class Poly a where
-   poly :: a -> b -> b
-
-instance Poly [a] where
-   poly [] y = y
-   poly x  y = y
-
-main = print ("hurrah" `poly` "Hello, world!\n")