Details
Description
This small boo program:
a = array(int, 10)
index = 5
a[index] += 1
gives the following compiler error: BCE0015: Node 'a[index]' has not been correctly processed
When I replace a[index] += 1 with either
a[index]++ or a[index] = a[index] + 1
everything works as expected.