1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 17:07:28 +03:00
juvix/tests/positive/ImportNestedLocalModule/ImportedModule.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

12 lines
107 B
Plaintext

module ImportedModule;
import Stdlib.Prelude open;
module A;
module B;
x : Nat := 1;
end;
end;