Skip to content

Commit

Permalink
add test for local variables created after localized vars (#11062)
Browse files Browse the repository at this point in the history
  • Loading branch information
amitmurthy committed Feb 20, 2016
1 parent de1f565 commit 58742b7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/parallel_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -744,3 +744,15 @@ end

# issue #13122
@test remotecall_fetch(identity, workers()[1], C_NULL) === C_NULL

# issue #11062
function t11062()
@async x=1
x = 2
end

@test t11062() == 2




0 comments on commit 58742b7

Please sign in to comment.