aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/Array_2.java
blob: b406c47d6dfc42059b3f3af3c3605517a16c7f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test to make sure multidimensional arrays work.
// From Bryce McKinlay

public class Array_2
{
  static final int a = 10, b = 15;

  public static void main(String args[])
  {
    int[][] foo = new int [a][b];
    System.out.println(foo.length);
    System.out.println(foo[a-1].length);
  }
}