1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 18:13:56 +03:00
juvix/tests/negative/AmbiguousSymbol.mjuvix

10 lines
112 B
Plaintext

module AmbiguousSymbol;
axiom A : Type;
module M;
axiom A : Type;
end;
open M;
axiom B : A;
end;