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