summaryrefslogtreecommitdiffstats
path: root/tests/new/MultiArrays.java
blob: 9994abf6d6b4727210d563fdcccd993aa2a818a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import org.aspectj.testing.Tester;

public class MultiArrays {
    static int[][] data = {{11,12,13}, {21,22,23}};

    public static void test() {
        Tester.checkEqual(data[0][0], 11, "0,0");
        Tester.checkEqual(data[1][2], 23, "1,2");
    }

    public static void main(String[] args) { test(); }
}