mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
17 lines
174 B
Plaintext
17 lines
174 B
Plaintext
|
module AmbiguousExport;
|
||
|
|
||
|
module N;
|
||
|
module O;
|
||
|
inductive T {
|
||
|
A : T;
|
||
|
};
|
||
|
end;
|
||
|
end;
|
||
|
|
||
|
open N public;
|
||
|
|
||
|
module O;
|
||
|
axiom A : Type;
|
||
|
end;
|
||
|
end;
|