Reported in https://github.com/JuliaArrays/ArrayInterface.jl/pull/156#issuecomment-851002133: ```julia julia> using ArrayInterface julia> u_base = randn(10, 10); u_view = view(u_base, 3, :); u_reshaped_view = reshape(u_view, 1, size(u_base, 2)); julia> ArrayInterface.dense_dims(u_reshaped_view) ``` As confirmed by @chriselrod in https://github.com/JuliaArrays/ArrayInterface.jl/pull/156#issuecomment-851293134, this is a bug: > The correct answer for `u_reshaped_view` would be `(False(),False())`.