1 // Class anonarray2
2 // Generated on Tue Feb  1 21:14:06 PST 2000
3 // Anonymous array, with a non primitive type.
4 
5 class anonarray2 {
6 
7   static void foo (String [][] x) {
8       for (int i = 0; i < x.length; i++)
9           {
10               for (int j = 0; j < x[i].length; j++)
11                   System.out.print (x[i][j]);
12               System.out.println();
13           }
14   }
15 
16   public static void main (String[] arg)
17   {
18       foo (new String[][] {{"2","3"},{"5","7"}});
19       System.out.println ((new String [][] {{"11","13"},{"17","19"}}).length);
20       System.out.println ((new String [][] {{"23","29"},{"31","37"}})[0][1]);
21   }
22 }
23