blob: 07d347fb0cc065ffa198542d54526596df2e780d [file] [log] [blame]
// "Use existing implementation of 'foo'" "false"
interface I {
void <caret>foo();
}
class IImpl implements I {
@Override
public void foo() {}
}
interface II extends I {}
class IImpl2 extends IImpl implements II {}