* libjava.compile/pr7912.java: New file.

From-SVN: r58806
This commit is contained in:
Tom Tromey 2002-11-05 04:07:39 +00:00 committed by Tom Tromey
parent 1c7b0712bc
commit 5dbc91f572
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-11-04 Tom Tromey <tromey@redhat.com>
* libjava.compile/pr7912.java: New file.
2002-11-04 Andrew Haley <aph@redhat.com>
* libjava.lang/utilTest.java: New.

View File

@ -0,0 +1,8 @@
public class pr7912
{
static Cloneable c;
public static void main(String[] args)
{
c = new int[1];
}
}