mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +03:00
9d9631aa26
- Closes #2185
17 lines
187 B
Plaintext
17 lines
187 B
Plaintext
module LetOpen;
|
|
|
|
module M;
|
|
axiom A : Type;
|
|
|
|
module M1;
|
|
axiom A : Type;
|
|
|
|
end;
|
|
end;
|
|
|
|
axiom B : let
|
|
open M;
|
|
in let
|
|
open M1;
|
|
in A;
|