1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/positive/VisibilityPrecendence/NestedLocalModuleViaExport.juvix
2024-02-16 18:26:01 +01:00

9 lines
100 B
Plaintext

module NestedLocalModuleViaExport;
module A;
type T := t;
end;
open A using {T} public;
open A;