Edge case of JuliaLang/julia#52895, missed by the bugfix JuliaLang/julia#52942. @jishnub I think this will be easy for you. ```julia id = Hermitian(I(2)) m = Hermitian(Matrix{BigFloat}(undef,2,2)) m.data[1,1] = 1 m.data[1,2] = 2 m.data[2,2] = 3 m+id ```