1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/tests/positive/QualifiedConstructor/M.juvix

21 lines
185 B
Plaintext

module M;
module O;
axiom A : Type;
end;
open O;
module N;
module O;
type T :=
A : T;
end;
end;
open N.O;
fun : T → T;
fun A := T;
end;