aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR1343.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2002-06-04 19:39:02 +0000
committerTom Tromey <tromey@gcc.gnu.org>2002-06-04 19:39:02 +0000
commitd6ee617dd7edc5cb721ad5cd320c47acd18e7ea8 (patch)
tree2358454229893641ff57b859c12b67dc2131ca2c /libjava/testsuite/libjava.compile/PR1343.java
parent4e176a9bbd80acdc4176d011755b54670ef647fb (diff)
downloadgcc-d6ee617dd7edc5cb721ad5cd320c47acd18e7ea8.zip
gcc-d6ee617dd7edc5cb721ad5cd320c47acd18e7ea8.tar.gz
gcc-d6ee617dd7edc5cb721ad5cd320c47acd18e7ea8.tar.bz2
re PR libgcj/6389 (System.getProperty("") should always throw an IllegalArgumentException)
* 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. From-SVN: r54259
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR1343.java')
-rw-r--r--libjava/testsuite/libjava.compile/PR1343.java17
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 0000000..be35925
--- /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
+ {
+ };
+ }
+}