Sven Panne wrote: > Tom Pledger wrote: > > How about using qualified imports of modules? > > [...] > > module Test where > > import qualified QL1 > > import QL2 > > [...] > > You don't even have to use a qualified import for QL1, prefixing > the ambiguous occurrences of up/low is enough [...] Just a small note: Leaving out `qualified' does not work in Hugs98, although it should (it's almost the same example as the first one in the Haskell report, section 5). This should be documented as a non-conformance in the Hugs98 manual, or even better: It should be fixed. :-) Cheers, Sven -- Sven Panne Tel.: +49/89/2178-2235 LMU, Institut fuer Informatik FAX : +49/89/2178-2211 LFE Programmier- und Modellierungssprachen Oettingenstr. 67 mailto:[EMAIL PROTECTED] D-80538 Muenchen http://www.informatik.uni-muenchen.de/~Sven.Panne
