mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 17:07:28 +03:00
dc0498902f
This PR fixes a TODO in the scoper code. We need to transitively register local modules when checking an import. * Closes #2654
12 lines
107 B
Plaintext
12 lines
107 B
Plaintext
module ImportedModule;
|
|
|
|
import Stdlib.Prelude open;
|
|
|
|
module A;
|
|
|
|
module B;
|
|
x : Nat := 1;
|
|
end;
|
|
|
|
end;
|