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

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