another module system bug
"Iavor S. Diatchki" <[email protected]>
| Newsgroups | gmane.comp.lang.haskell.hugs.bugs |
|---|---|
| Message-ID | <[email protected]> |
hi,
here is another module system bug:
module A where
data A = A { t :: Int }
module B where
import A
data B = B { t :: Char }
Hugs complains that the selector "t" is already defined.
This is wrong, since this error should only be reported if the selector
is used ambiguously (e.g. with an unqualified name).
bye
iavor
--
==================================================
| Iavor S. Diatchki, Ph.D. student |
| Department of Computer Science and Engineering |
| School of OGI at OHSU |
| http://www.cse.ogi.edu/~diatchki |
==================================================