This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
New test case
- To: java-patches at sources dot redhat dot com
- Subject: New test case
- From: Anthony Green <green at cygnus dot com>
- Date: Sun, 8 Oct 2000 19:18:02 -0700
- Reply-to: green at cygnus dot com
I'm about to commit the following test case for a bug I believe is
fixed by this patch:
http://gcc.gnu.org/ml/gcc-patches/2000-10/msg00220.html
Sun Oct 8 19:14:05 2000 Anthony Green <green@redhat.com>
* libjava.compile/ArrayClass.java: New file.
public class ArrayClass
{
public static void main (String[] args)
{
System.out.println (ArrayClass.class);
System.out.println (ArrayClass[].class);
System.out.println (ArrayClass[][].class);
System.out.println (ArrayClass[][][].class);
System.out.println (ArrayClass[][][][].class);
}
}
--
Anthony Green Red Hat
Sunnyvale, California