Skip to content

Commit ab3c1d2

Browse files
authored
Fix some invalidations from extending ==(::Any, ::SomeType) (#36255)
1 parent 3e4a0e7 commit ab3c1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterserialize.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ end
143143
# d) is a bits type
144144
function syms_2b_sent(s::ClusterSerializer, identifier)
145145
lst = Symbol[]
146-
check_syms = get(s.glbs_in_tnobj, identifier, [])
146+
check_syms = get(s.glbs_in_tnobj, identifier, Symbol[])
147147
for sym in check_syms
148148
v = getfield(Main, sym)
149149

0 commit comments

Comments
 (0)