The following fails: ```julia using Test using StaticArrays function doit(s, c::Integer) (s .- s.^2) ./ c end s = @SVector[1.] c = 2 @inferred doit(s,c) ```