mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
9 lines
100 B
Plaintext
9 lines
100 B
Plaintext
|
module NestedLocalModuleViaExport;
|
||
|
|
||
|
module A;
|
||
|
type T := t;
|
||
|
end;
|
||
|
|
||
|
open A using {T} public;
|
||
|
open A;
|