|
[ ghc-Bugs-904512 ] hiding does not follow haskell report: msg#00052lang.haskell.glasgow.bugs
Bugs item #904512, was opened at 2004-02-25 12:15 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=904512&group_id=8032 Category: Compiler Group: 6.0.1 Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: hiding does not follow haskell report Initial Comment: Email: mdg@xxxxxxxxxx As understand hiding from the Haskell report, it should hide only the unqualified name and not the qualified name, e.g., hide head but not Prelude.head (or List.head). This is not the case with ghc 6.0.1: mdg@mdglt:/bug-2111> cat Main.hs module Main where import Prelude hiding (head) main = do print (Prelude.head [0..]) head head = print "head" mdg@mdglt:/bug-2112> ghc --version The Glorious Glasgow Haskell Compilation System, version 6.0.1 mdg@mdglt:/bug-2113> ghc -fglasgow-exts -o Main --make Main Chasing modules from: Main Compiling Main ( Main.hs, ./Main.o ) Main.hs:5: Variable not in scope: `Prelude.head' mdg@mdglt:/bug-2114> ghc -o Main --make Main Chasing modules from: Main Compiling Main ( Main.hs, ./Main.o ) Main.hs:5: Variable not in scope: `Prelude.head' mdg@mdglt:/bug-2115> runhugs Main 0 "head" as expected. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108032&aid=904512&group_id=8032
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | [ ghc-Bugs-900759 ] -O causes unbounded memory use, SourceForge.net |
|---|---|
| Next by Date: | [ ghc-Bugs-904512 ] hiding does not follow haskell report, SourceForge.net |
| Previous by Thread: | [ ghc-Bugs-904234 ] .lhs Birdtracks are removed instead of replaced, SourceForge.net |
| Next by Thread: | [ ghc-Bugs-904512 ] hiding does not follow haskell report, SourceForge.net |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |