For PR java/5641:
* libjava.compile/PR5641.xfail: New file. * libjava.compile/PR5641.java: New file. From-SVN: r49660
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user