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
The leaf types Tuple{Int} and Tuple{T} where T <: Int aren't canonicalized to the same thing.
julia> Tuple{Int} == (Tuple{T} where T <: Int)
true
julia> Tuple{Int} === (Tuple{T} where T <: Int)
false
julia> Tuple{Int} isa Type{Tuple{T} where T <: Int}
false
The text was updated successfully, but these errors were encountered:
The leaf types
Tuple{Int}
andTuple{T} where T <: Int
aren't canonicalized to the same thing.The text was updated successfully, but these errors were encountered: