1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/positive/Imports/A.mjuvix
2022-04-04 17:44:08 +02:00

16 lines
212 B
Plaintext

module A;
module M;
module N;
infix 3 t;
inductive T {
t : T;
};
end ;
infix 2 +;
axiom + : Type → Type → Type;
end ;
import M;
f : M.N.T;
f (_ M.N.t _) ≔ Type M.+ Type;
end;