OSDN Git Service

* libjava.compile/PR129_B.java: New file.
authorgreen <green@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 5 Mar 2000 09:07:27 +0000 (09:07 +0000)
committergreen <green@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 5 Mar 2000 09:07:27 +0000 (09:07 +0000)
* libjava.compile/support/PR129_A.java: New file.
For PR gcj/129.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32340 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.compile/PR129_B.java [new file with mode: 0644]
libjava/testsuite/libjava.compile/support/PR129_A.java [new file with mode: 0644]

index fd828dc..52367ad 100644 (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.
diff --git a/libjava/testsuite/libjava.compile/PR129_B.java b/libjava/testsuite/libjava.compile/PR129_B.java
new file mode 100644 (file)
index 0000000..238df99
--- /dev/null
@@ -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 ); 
+  } 
+} 
+
diff --git a/libjava/testsuite/libjava.compile/support/PR129_A.java b/libjava/testsuite/libjava.compile/support/PR129_A.java
new file mode 100644 (file)
index 0000000..643dad6
--- /dev/null
@@ -0,0 +1,6 @@
+package support;
+
+public class PR129_A { 
+  public static String[] strArr = { "A", "B", "C" }; 
+} 
+