mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
9d9631aa26
- Closes #2185
24 lines
273 B
Plaintext
24 lines
273 B
Plaintext
module LetOpen;
|
|
|
|
module M;
|
|
axiom A : Type;
|
|
end;
|
|
|
|
axiom B : let
|
|
open M;
|
|
in A;
|
|
|
|
module Separator;
|
|
|
|
end;
|
|
|
|
axiom A : Type;
|
|
|
|
axiom C : let
|
|
open M hiding {A};
|
|
in A;
|
|
|
|
axiom D : let
|
|
open M using {A as A'};
|
|
in A';
|