1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/positive/QualifiedConstructor/M.mjuvix
2022-03-24 10:28:15 +00:00

22 lines
199 B
Plaintext

module M;
module O;
axiom A : Type;
end;
open O;
module N;
module O;
inductive T {
A : T;
};
end;
end;
open N.O;
fun : T → T;
fun A ≔ T;
end;