opened 03:46PM - 06 Jun 13 UTC
closed 06:16PM - 06 Jun 13 UTC
I might be ignorant of the scope rules for submodules, but why does this:
``` j…ulia
module Amod
type A
end
type B
a::A
end
end
```
work, while this:
``` julia
module Amod
type A
end
module Bmod
type B
a::A
end
end
end
```
gives `ERROR: A not defined`?