mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 17:32:00 +03:00
11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
module ShadowPublicOpen;
|
|
module M;
|
|
module N;
|
|
axiom A : Type;
|
|
end;
|
|
open N public;
|
|
end;
|
|
open M;
|
|
axiom A : Type;
|
|
end;
|