diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 22:26:15 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-17 22:26:15 +0000 |
commit | b023f04c858466492955ded41e434e5b1acefc50 (patch) | |
tree | b26022ea8599658bd04b90af6736a88bc595a629 /libjava/testsuite/libjava.compile/XercesBug.java | |
parent | 5a9f87bb4f047042c9b67dc3d22c275b4c41c24d (diff) | |
download | ppe42-gcc-b023f04c858466492955ded41e434e5b1acefc50.tar.gz ppe42-gcc-b023f04c858466492955ded41e434e5b1acefc50.zip |
2001-08-17 Alexandre Petit-Bianco <apbianco@redhat.com>
* libjava.compile/XercesBug.java: New file.
(http://gcc.gnu.org/ml/gcc-patches/2001-08/msg01066.html)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44987 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/libjava.compile/XercesBug.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/XercesBug.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/XercesBug.java b/libjava/testsuite/libjava.compile/XercesBug.java new file mode 100644 index 00000000000..9184d00a276 --- /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; + } + + } +} |