Array parameter setting fails with Int64 parameter type

I just tried the following example on Mimi v0.9.4 and v0.9.5, and didn’t get an error. Do you know what’s different in your example?

using Mimi

@defcomp foo begin
    x::Int64 = Parameter(index=[time])
end

m = Model()
set_dimension!(m, :time, 3)
add_comp!(m, foo)
set_param!(m, :foo, :x, [1,2,3])