blob: a5ca5b7ba4627251819fef04b65fa7185c9d6b6f [file] [log] [blame]
interface I {
boolean <caret>isFoo();
}
class RRR implements I {
public boolean isFoo() {
return true;
}
{
boolean foo = isFoo();
}
void g(I i) {
boolean foo = i.isFoo();
}
}