Int32(7) in Val{Int32(7)} is shown as a mere 7:
julia> Val{Int32(7)}
Val{7}
That's not correct, however, given that Val{Int32(7)} != Val{7}.
The misleading printing behavior leads to confusion and complaints such as this one: JuliaArrays/StaticArrays.jl#1233
Int32(7)inVal{Int32(7)}is shown as a mere7:julia> Val{Int32(7)} Val{7}That's not correct, however, given that
Val{Int32(7)} != Val{7}.The misleading printing behavior leads to confusion and complaints such as this one: JuliaArrays/StaticArrays.jl#1233