mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 08:39:26 +03:00
9 lines
112 B
Plaintext
9 lines
112 B
Plaintext
module MultipleExportConflict;
|
|
|
|
module A;
|
|
axiom e : Type;
|
|
end;
|
|
open A public;
|
|
axiom e : Type;
|
|
end;
|