I was executing the following on 0.4
julia> next( Number, Any )
ERROR: MethodError: `next` has no method matching next(::Type{Number},
::Type{Any})
Closest candidates are:
next(::SimpleVector, ::Any)
next{T}(::StepRange{T,S}, ::Any)
next{T}(::UnitRange{T}, ::Any)
...
julia> method_exists( next, Tuple{ Number, Any } )
true
This seems incorrect?
