Skip to content

Commit

Permalink
Merge pull request #15164 from JuliaLang/amitm/test11062
Browse files Browse the repository at this point in the history
add test for local variables created after localized vars (#11062)
  • Loading branch information
vtjnash committed Feb 21, 2016
2 parents c20f1e1 + 076fb31 commit e907068
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 e907068

Please sign in to comment.