RE: Re[2]: [Haskell-cafe] ghc 6.4 import problem

2005-06-02 Thread Simon Marlow
On 01 June 2005 07:24, Bulat Ziganshin wrote: > Hello Fergus, > > Tuesday, May 31, 2005, 10:24:41 PM, you wrote: > >>> import Data.Set hiding (map) >>> import qualified Data.Set as Set >>> >>> will do fine. > >> That code only compiles with ghc 6.4, and won't compile with ghc 6.2: >> you'll ge

Re[2]: [Haskell-cafe] ghc 6.4 import problem

2005-06-01 Thread Bulat Ziganshin
Hello Fergus, Tuesday, May 31, 2005, 10:24:41 PM, you wrote: >> import Data.Set hiding (map) >> import qualified Data.Set as Set >> >> will do fine. FH> That code only compiles with ghc 6.4, and won't compile with ghc 6.2: FH> you'll get an error for the "hiding (map)" part, because in 6.2 FH>