blob: 5d61f06a88671e723d2ed80662587f56bf1ec27b [file] [log] [blame]
abstract public class YYY implements I,II{
private void f(YYY y) {
II i = y.<ref>foo();
}
}
interface I {
I foo();
}
interface II extends I {
II foo();
}