//test nested indexing { var a = [[[0]]]; a[0][0][0] = 42; print a; assert a[0][0] == [42], "nested indexing failed"; }