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>functionf(g)
h = g[]
t = (h ===nothing)
h =nothingprintln(t ?typeof(h) :typeof(h))
end
f (generic function with 1 method)
julia>f(Ref{Union{Int, Nothing}}( nothing ))
Nothing
julia>f(Ref{Union{Int, Nothing}}( 1 ))
Int64
um, yeah, variable reuse: I guess just don't do that.
The text was updated successfully, but these errors were encountered:
We were neglecting to clear Conditional objects upon assignment to their attached slot
(which invalidates their knowledge of the contents of that slot)
fixes#25579
We were neglecting to clear Conditional objects upon assignment to their attached slot
(which invalidates their knowledge of the contents of that slot)
fixes#25579
We were neglecting to clear Conditional objects upon assignment to their attached slot
(which invalidates their knowledge of the contents of that slot)
fixes#25579
We were neglecting to clear Conditional objects upon assignment to their attached slot
(which invalidates their knowledge of the contents of that slot)
fixes#25579
)
We were neglecting to clear Conditional objects upon assignment to their attached slot
(which invalidates their knowledge of the contents of that slot)
fixes#25579
um, yeah, variable reuse: I guess just don't do that.
The text was updated successfully, but these errors were encountered: