blob: 98a491a962d73aa447c66b3834bc89038ce38350 [file] [log] [blame]
interface A
{
abstract String foo();
}
interface B
{
abstract Object foo();
}
class C implements A, B
{
<caret>
}