mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
8 lines
138 B
Java
8 lines
138 B
Java
// "Implement methods" "true"
|
|
class B {
|
|
protected void f() {}
|
|
}
|
|
interface A {
|
|
void f();
|
|
}
|
|
<caret>class D extends B implements A {} |