mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 18:13:56 +03:00
10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
module AmbiguousSymbol;
|
|
|
|
axiom A : Type;
|
|
module M;
|
|
axiom A : Type;
|
|
end;
|
|
open M;
|
|
|
|
axiom B : A;
|
|
end; |