* libjava.compile/pr8712.java: New file, for PR java/8712.

From-SVN: r60856
This commit is contained in:
Tom Tromey 2003-01-03 23:07:23 +00:00 committed by Tom Tromey
parent 5e694fba05
commit 1778c8ff34
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-01-03 Tom Tromey <tromey@redhat.com>
* libjava.compile/pr8712.java: New file, for PR java/8712.
2003-01-01 Tom Tromey <tromey@redhat.com>
* libjava.compile/pr8955.java: New test, for PR java/8955.

View file

@ -0,0 +1,7 @@
public class pr8712
{
boolean x(pr8712 a)
{
return (!(a instanceof pr8712));
}
}