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 076fb31
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/parallel_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -744,3 +744,12 @@ end

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

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

@test t11062() == 2

0 comments on commit 076fb31

Please sign in to comment.