Ambiguity on Vector{<:Abstract*}?

It catches a Vector{AbstractFloat}, just like it says:

julia> x = Vector{AbstractFloat}(5)
5-element Array{AbstractFloat,1}:
 #undef
 #undef
 #undef
 #undef
 #undef

julia> f(x)
2
1 Like