re GNATS gcj/129 (Static array length access bug in gcj)

* libjava.compile/PR129_B.java: New file.
	* libjava.compile/support/PR129_A.java: New file.
	For PR gcj/129.

From-SVN: r32340
This commit is contained in:
Anthony Green 2000-03-05 09:07:27 +00:00 committed by Anthony Green
parent c261e080ef
commit 18ca9ce723
3 changed files with 21 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2000-03-05 Anthony Green <green@redhat.com>
* libjava.compile/PR129_B.java: New file.
* libjava.compile/support/PR129_A.java: New file.
For PR gcj/129.
2000-03-04 Anthony Green <green@redhat.com>
* libjava.lang/PR160.java: New file.

View File

@ -0,0 +1,9 @@
import support.PR129_A;
public class PR129_B {
public static void main ( String[] args ) {
int length = PR129_A.strArr.length;
System.out.println ( "Array length: " + length );
}
}

View File

@ -0,0 +1,6 @@
package support;
public class PR129_A {
public static String[] strArr = { "A", "B", "C" };
}