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
This is an issue that seems to affect Windows users:
julia>module ModPlus
+(r...) = Base.:+(r...)
end
ModPlus
julia>import ModPlus:+
julia>module ModTimes
*(r...) = Base.:*(r...)
end
ModTimes
julia>import ModTimes:*
WARNING: ignoring conflicting import of Mod.* into Main
It seems that on Windows version of Julia, there is an issue with importing the * method.
For some reason, this is the only method that doesn't get imported.
I am actually not a Windows user, but this issue came up when I was checking the compatibility of my package. This issue does not happen on Linux or OSX and it is only specific to *.
This is an issue that seems to affect Windows users:
It seems that on Windows version of Julia, there is an issue with importing the
*
method.For some reason, this is the only method that doesn't get imported.
I am actually not a Windows user, but this issue came up when I was checking the compatibility of my package. This issue does not happen on Linux or OSX and it is only specific to
*
.Is this a bug? What's going on here?
A possible workaround is to do
but this is not an ideal solution.
https://discourse.julialang.org/t/bug-with-import-on-windows/10798
The text was updated successfully, but these errors were encountered: