You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using HDF5, JLD
julia> type Foo{T} end
julia> a =Foo{:a}()
Foo{:a}()
julia>save("test.jld", "a", a)
julia> b =load("test.jld", "a")
WARNING: type Foo{a} not present in workspace; reconstructing
##Foo{a}#7932()
julia>@asserttypeof(a) ==typeof(b)
ERROR: assertion failed:typeof(a) ==typeof(b)
in error at ./error.jl:21
The core problem seems to be that symbols print without any indication of being symbols.
This fails:
The core problem seems to be that symbols print without any indication of being symbols.
One possible solution is to add a method
in JLD.jl but I don't know whether that's the right way to go.
The text was updated successfully, but these errors were encountered: