blob: 095f908e21c71aaf8dc430a84afba480507f3753 [file] [log] [blame]
interface F {
Object o();
}
interface E extends F {
String o();
}
interface B extends E,F { }
class User {
void x(B a) {
String o = a.<ref>o();
}
}