aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite')
-rw-r--r--libjava/testsuite/ChangeLog4
-rw-r--r--libjava/testsuite/libjava.compile/XercesBug.java13
2 files changed, 17 insertions, 0 deletions
diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog
index 75ea263..edd0a50 100644
--- a/libjava/testsuite/ChangeLog
+++ b/libjava/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-17 Alexandre Petit-Bianco <apbianco@redhat.com>
+
+ * libjava.compile/XercesBug.java: New file.
+
2001-08-12 Alexandre Petit-Bianco <apbianco@redhat.com>
* libjava.lang/Matrix4f.java: New file.
diff --git a/libjava/testsuite/libjava.compile/XercesBug.java b/libjava/testsuite/libjava.compile/XercesBug.java
new file mode 100644
index 0000000..9184d00
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/XercesBug.java
@@ -0,0 +1,13 @@
+// This is java/4007
+public final class XercesBug
+{
+ static final class OrderedHashtable
+ {
+ private Entry[] fEntries = null;
+ public static final class Entry
+ {
+ int x;
+ }
+
+ }
+}