Closed
Description
This seems wrong to me:
julia> A = randn(5,3);
julia> V = view(A',:,2:4)
3×3 view(::Adjoint{Float64,Array{Float64,2}}, :, 2:4) with eltype Float64:
-0.6594 -0.124149 0.492452
1.20338 0.224742 -0.0431509
-0.425888 0.725104 0.976229
julia> Base.unsafe_load(pointer(V))
0.49245221105087544
I expected it to return the pointer to V[1,1]
, not V[1,end]
.
Related to #35929