To replicate: ``` julia A = Tridiagonal(rand(4), rand(5), rand(4)) B = rand(5, 5) A * B #works B * A #MethodError B * full(A) #works ``` Seems to me some fallback is missing. I'm on v0.4-rc2, haven't tried on master.