This is the mail archive of the java-patches@sources.redhat.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

New test case



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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]