[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn029.hs
diff --git a/ghc/tests/rename/should_compile/rn029.hs b/ghc/tests/rename/should_compile/rn029.hs
deleted file mode 100644 (file)
index 5b87602..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
--- !!! Checking that lazy name clashing works.
-module ShouldCompile where
-
-import List ( reverse, sort )
-
-sort :: Int    -- Clashes with List.sort, 
-sort = 4       -- but never used, so OK        
-       
-
-reverse :: Int -- Clashes with List.reverse, 
-reverse = 3    -- but the only uses are qualified
-
-x = ShouldCompile.reverse
-
-y = List.reverse
-
-