Skip to content
Snippets Groups Projects
Commit 5c756031 authored by simonmar's avatar simonmar
Browse files

[haddock @ 2004-03-24 09:42:10 by simonmar]

hiding bug from Ross Paterson (fixed in rev 1.59 of Main.hs)
parent 19b6bb99
No related branches found
No related tags found
Loading
-- #hide
module A where { data T = MkT; f :: T; f = MkT }
module B(f, T) where import A
module C(module B) where import B
-- The link to the type T in the doc for this module should point to
-- B.T, not A.T. Bug fixed in rev 1.59 of Main.hs.
module D(f) where import C
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment