re-export bug
Ross Paterson <[email protected]> Mon, 30 Jan 2006 14:46:30 +0000
| Newsgroups | gmane.comp.lang.haskell.hugs.bugs |
|---|---|
| Message-ID | <[email protected]> |
Bug reported by Bulat Ziganshin: load of C fails incorrectly in
module A (f) where
class A a where f :: a
module B (module A) where
import A
module C where
import B (f)
Same if A is
module A (f) where
data R = R { f :: Int }