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