Repository : ssh://darcs.haskell.org//srv/darcs/testsuite

On branch  : master

http://hackage.haskell.org/trac/ghc/changeset/0c8e3f3adcc42ffb463093b2618f9af4c9d6ac4f

>---------------------------------------------------------------

commit 0c8e3f3adcc42ffb463093b2618f9af4c9d6ac4f
Author: Ian Lynagh <[email protected]>
Date:   Sun Apr 17 21:04:39 2011 +0100

    Fix imports in HappyTest.hs
    
    We now need to import Data.Char rather than Char.

>---------------------------------------------------------------

 tests/ghc-regress/ghci.debugger/HappyTest.hs |   15 +--------------
 1 files changed, 1 insertions(+), 14 deletions(-)

diff --git a/tests/ghc-regress/ghci.debugger/HappyTest.hs 
b/tests/ghc-regress/ghci.debugger/HappyTest.hs
index 17fa5ca..9be5440 100644
--- a/tests/ghc-regress/ghci.debugger/HappyTest.hs
+++ b/tests/ghc-regress/ghci.debugger/HappyTest.hs
@@ -1,23 +1,10 @@
 {-# LANGUAGE CPP #-}
-import Char
-#if __GLASGOW_HASKELL__ >= 503
+import Data.Char
 import Data.Array
-#else
-import Array
-#endif
-#if __GLASGOW_HASKELL__ >= 503
 import GHC.Exts
-#else
-import GlaExts
-#endif
-#if __GLASGOW_HASKELL__ >= 503
 import System.IO
 import System.IO.Unsafe
 import Debug.Trace
-#else
-import IO
-import IOExts
-#endif
 
 -- parser produced by Happy Version 1.16
 



_______________________________________________
Cvs-ghc mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/cvs-ghc

Reply via email to