1void main () {
2	int[] foo = new int[42];
3	int i = 1;
4	foo[i = i - 1] = 23;
5	assert (i == 0);
6}
7