1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 17:07:28 +03:00
juvix/tests/positive/ImportNestedLocalModule/ImportNestedLocalModule.juvix
Paul Cadman dc0498902f
Transitively register local modules in ScoperState (#2655)
This PR fixes a TODO in the scoper code. We need to transitively
register local modules when checking an import.


* Closes #2654
2024-02-16 14:09:49 +00:00

7 lines
126 B
Plaintext

module ImportNestedLocalModule;
import Stdlib.Prelude open;
import ImportedModule open;
main : Nat := ImportedModule.A.B.x;