We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On latest Julia master, I see this:
julia> promote_type(Union{Void, Null, Int}, Float64) Union{Nulls.Null, Float64}
It seems to be due to this definition, as removing it fixes the problem:
Base.promote_rule(::Type{T}, ::Type{Union{S,Null}}) where {T,S} = Union{promote_type(T, S), Null}
On Julia 0.6, this returns Any. I'm not sure when it changed on master but that's the first time I notice this. Is that a Julia bug?
Any
The text was updated successfully, but these errors were encountered:
@JeffBezanson Would you say this is the correct behavior for Julia?
Sorry, something went wrong.
No branches or pull requests
On latest Julia master, I see this:
It seems to be due to this definition, as removing it fixes the problem:
On Julia 0.6, this returns
Any
. I'm not sure when it changed on master but that's the first time I notice this. Is that a Julia bug?The text was updated successfully, but these errors were encountered: