For PR java/5641:

* libjava.compile/PR5641.xfail: New file.
	* libjava.compile/PR5641.java: New file.

From-SVN: r49660
This commit is contained in:
Tom Tromey 2002-02-11 00:18:52 +00:00 committed by Tom Tromey
parent 96b9910446
commit 62deb2118b
3 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,20 @@
interface I
{
void m();
}
abstract class C implements I {}
class Foo
{
void Bar(C c)
{
c.m();
}
void blah(C c)
{
c.m();
}
public static void main (String[] args)
{
}
}