mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
11 lines
130 B
Java
11 lines
130 B
Java
package z;
|
|
|
|
interface I {
|
|
void run();
|
|
}
|
|
abstract class A {
|
|
public void <caret>run() {}
|
|
}
|
|
|
|
class Foo extends A implements I {
|
|
} |