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
the @async block is creating a new variable instead of capturing the intended one from the let block (due to the presence of a global of the same name)
julia> t =33
julia>let t
c =Condition()
task =@asyncbeginnotify(c)
t =Timer(0.055)
wait(t)
endwait(task)
println(t)
end
ERROR: UndefVarError: t not defined
ineval(::Module, ::Any) at ./boot.jl:243
The text was updated successfully, but these errors were encountered:
the
@async
block is creating a new variable instead of capturing the intended one from the let block (due to the presence of a global of the same name)The text was updated successfully, but these errors were encountered: