mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
3fbc9c7c55
Closes #1644 #1635
21 lines
185 B
Plaintext
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;
|