1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-08 16:51:53 +03:00
juvix/tests/negative/LetOpen.juvix
2023-10-02 23:13:45 +02:00

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;