``` using SparseArrays, LinearAlgebra A = spzeros(7,1) F = qr(A) rank(F) # 33 ``` it says the rank is 33, but it should be 0 (aside: it would be really nice to have a unified QR interface for sparse and dense. I can't call rank for a dense QR.)