1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 06:23:13 +03:00
juvix/tests/positive/LetOpen.juvix
2023-10-02 23:13:45 +02:00

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';