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

9 lines
100 B
Plaintext
Raw Normal View History

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