blob: 509cae5ae80158d27aa60ea6e4abd0a56df88ea1 [file] [log] [blame]
interface A
{
abstract String foo();
}
interface B
{
abstract Object foo();
}
class C implements A, B
{
public String foo() {
<selection>return null;</selection>
}
}