New test code
From-SVN: r36796
This commit is contained in:
parent
f01c1eb384
commit
f2c436967f
2 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Oct 8 19:14:05 2000 Anthony Green <green@redhat.com>
|
||||
|
||||
* libjava.compile/ArrayClass.java: New file.
|
||||
|
||||
2000-08-31 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* libjava.compile/abstr.xfail: New file.
|
||||
|
|
11
libjava/testsuite/libjava.compile/ArrayClass.java
Normal file
11
libjava/testsuite/libjava.compile/ArrayClass.java
Normal file
|
@ -0,0 +1,11 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue