MsgPack.jl icon indicating copy to clipboard operation
MsgPack.jl copied to clipboard

Round trip of nested tuple gives type conversion error

Open dstahlke opened this issue 3 years ago • 0 comments

using MsgPack
obj = (1,(2,3))
unpack(pack(obj), typeof(obj))

ERROR: MethodError: Cannot convert an object of type Vector{Any} to an object of type Tuple{Int64, Int64}

dstahlke avatar Aug 08 '21 19:08 dstahlke