Skip to content

Commit 5f22f9e

Browse files
add some broadcast checks for VectorOfArray
1 parent 6ba0879 commit 5f22f9e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/basic_indexing.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,7 @@ recs = [[1, 2, 3], [3 5; 6 7], [8, 9, 10, 11]]
6969
testva = VectorOfArray(recs) #TODO: clearly this printed form is nonsense
7070
@test testva[:, 1] == recs[1]
7171
testva[1:2, 1:2]
72+
73+
# Test broadcast
74+
a = testva .+ rand(3,3)
75+
a.= testva

0 commit comments

Comments
 (0)