I don't know if is a bug because your created a Dict from Integer keys to 
Integer values
and inserted a value 1 with key 3 of type Int64, then another with 3 of 
type Int32 value 5

if your say
julia> d[3]
1

julia> d[int32(3)]
5

maybe Dict has to do more check to see if the values for keys are the same.

Reply via email to