-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UndefVarError when a local variable is previously referenced in an @async
block.
#11062
Comments
For the record, here is a corresponding thread on the Julia users mailing list: |
if we're going to close, should add a test |
which is as to be expected, since it has an UndefVar usage in that |
Test added in #15164 Probably closed by @JeffBezanson's work on anonymous functions. |
add test for local variables created after localized vars (#11062)
I guess what is happening here is that
x
in the@async
block refers to the yet-to-be-definedx
intest2
?The text was updated successfully, but these errors were encountered: