Hi,

this might be a known one, but the following module loads OK (using
the {Jan,June}98 releases):

  --Bar.hs:
  module Bar where

  import Foo (x)

  z = Foo.y

where Foo is

  --Foo.hs
  module Foo where

  x, y :: Int
  x = 1
  y = 2

(importing Foo qualified in Bar doesn't change the behaviour.) Baz
elicits the expected complaint though:

  --Baz.hs:
  module Baz where

  import Foo (x)

  z = y

--Sigbjorn

BTW, does hugs-June98-win32-binaries.zip really exist? I'm unable to
grab it via ftp nor http (getting back a 403 with http.)

Reply via email to