Closed
Description
From Pierre Pasquet on slack:
julia> x = Containers.@container([i=[:a, :b]], 0)
1-dimensional DenseAxisArray{Int64,1,...} with index sets:
Dimension 1, [:a, :b]
And data, a 2-element Vector{Int64}:
0
0
julia> view(x, :)
ERROR: MethodError: no method matching Base.Slice(::Vector{Symbol})
Closest candidates are:
Base.Slice(::Base.Slice) at indices.jl:353
Base.Slice(::T) where T<:AbstractUnitRange at indices.jl:351
Stacktrace:
[1] uncolon(inds::Tuple{Vector{Symbol}}, I::Tuple{Colon})
@ Base ./multidimensional.jl:827
[2] to_indices
@ ./multidimensional.jl:822 [inlined]
[3] to_indices
@ ./indices.jl:325 [inlined]
[4] view(A::JuMP.Containers.DenseAxisArray{Int64, 1, Tuple{Vector{Symbol}}, Tuple{JuMP.Containers._AxisLookup{Dict{Symbol, Int64}}}}, I::Function)
@ Base ./subarray.jl:176
[5] top-level scope
@ REPL[7]:1
We should throw a nicer error message, since this might be something that people do more often in future.