[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read020.hs
diff --git a/ghc/tests/reader/should_compile/read020.hs b/ghc/tests/reader/should_compile/read020.hs
deleted file mode 100644 (file)
index 50efcf3..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
--- !!! Checking that qualified method names are legal in instance body.
-module ShouldCompile where
-
-import Prelude hiding (Eq, (==))
-import Prelude as P (Eq,(==))
-
-data Foo = Foo Int Integer
-
-instance P.Eq Foo where
-  (Foo a1 b1) P.== (Foo a2 b2) = a1 P.== a2 && b1 P.== b2
-
-
-