A product of two StaticArrays results in an allocated array. Here is a minimal working example: ```julia A = @SMatrix rand(9,1) B = SArray{Tuple{9},Float64,1,9}(1,2,3,4,5,6,7,8,9) C = adjoint(B) D = A*C typeof(D) # Array{Float64,2} instead of a StaticArray. ```