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
7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
module ImportNestedLocalModule;
|
|
|
|
import Stdlib.Prelude open;
|
|
import ImportedModule open;
|
|
|
|
main : Nat := ImportedModule.A.B.x;
|