1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-30 14:13:27 +03:00
juvix/tests/positive/LocalSynonym.juvix

10 lines
113 B
Plaintext
Raw Normal View History

module LocalSynonym;
type Unit := unit : Unit;
myUnit : Type := Unit;
module L;
haha : myUnit := unit;
end;