aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR140.java
blob: 0f59d6e1d680122ee1fc0f87bcfb2ed782be9ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class PR140 {
  public static void fill(int[] a) {
    for (int i = 0; i < a.length; i++) {
      a[i] = i;
    }
  }
  public static void main(String[] args) {
    int[] a = new int[3];
    fill(a);
    a.length = 3000;
    fill(a);
  }
}