on 1.7-dev: ``` julia> using JuMP, LinearAlgebra julia> X = ones(AffExpr, 2, 2); julia> kron(I(2), X) 4×4 Matrix{AffExpr}: 1 1 #undef #undef 1 1 #undef #undef #undef #undef 1 1 #undef #undef 1 1 ``` Instead of dispatching to https://github.com/JuliaLang/julia/blob/master/stdlib/LinearAlgebra/src/diagonal.jl#L540 which initializes the output with zeros, we go into https://github.com/JuliaLang/julia/blob/master/stdlib/LinearAlgebra/src/dense.jl#L414