diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 19:39:02 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-04 19:39:02 +0000 |
commit | dc91ec5aa36e43755b952ec87b7ae95fa5af8c7e (patch) | |
tree | 2358454229893641ff57b859c12b67dc2131ca2c /libjava/testsuite/libjava.compile/PR1343.java | |
parent | 990c7fb3c6a4a4ba71d70ba56f8b5a6d4f1fb600 (diff) | |
download | ppe42-gcc-dc91ec5aa36e43755b952ec87b7ae95fa5af8c7e.tar.gz ppe42-gcc-dc91ec5aa36e43755b952ec87b7ae95fa5af8c7e.zip |
* libjava.compile/T20020604.java: New file.
For PR libgcj/6389:
* libjava.mauve/xfails: Now passes System.getProperty test.
For PR java/1343 and PR java/6336:
* libjava.compile/PR1343.java: New file.
For PR java/5913:
* libjava.compile/PR5913.xfail: Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54259 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR1343.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR1343.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR1343.java b/libjava/testsuite/libjava.compile/PR1343.java new file mode 100644 index 00000000000..be3592533b8 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR1343.java @@ -0,0 +1,17 @@ +import java.util.Vector; + +public class PR1343 +{ + void f(Object[] l) + { + class x1 + { + }; + } + void f(Vector l) + { + class x1 + { + }; + } +} |