]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/PR140.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / PR140.java
diff --git a/libjava/testsuite/libjava.compile/PR140.java b/libjava/testsuite/libjava.compile/PR140.java
deleted file mode 100644 (file)
index 0f59d6e..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-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);
-  }
-}