Closed
Description
This used to work on 0.4.5:
julia> typealias VecOrNullableVec{T} Union{AbstractVector{T}, AbstractVector{Nullable{T}}}
AbstractArray{T,1}
julia> VecOrNullableVec{Int}
AbstractArray{Int64,1}
julia> AbstractArray{Nullable{Int},1} <: VecOrNullableVec{Int}
false
Activity