After the fix from JuliaLang/julia#14725 the element type of `a = Number[2, 2.0, 4//2, 2+0im] / 2` is `Number` but in `StaticArrays` you get ```julia eltype(SVector{4, Number}(2, 2.0, 4//2, 2+0im) / 2) == Any ``` I guess it's just some promotion rules.