You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module example;
import Library.Delta as Delta;
module Resource;
module Delta;
end;
open Delta; -- ambiguity error between imported Delta and local module Delta.
end;
There exist workarounds to avoid this problem, but most likely the most intuitive is to be able to write open Resource.Delta.
@heueristik recently found this issue when writing the specs in Juvix.
The text was updated successfully, but these errors were encountered:
Consider this example:
There exist workarounds to avoid this problem, but most likely the most intuitive is to be able to write
open Resource.Delta
.@heueristik recently found this issue when writing the specs in Juvix.
The text was updated successfully, but these errors were encountered: