* 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
libjava/testsuite/libjava.compile

View file

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