mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
11 lines
147 B
Java
11 lines
147 B
Java
interface I {
|
|
void foo(int i);
|
|
}
|
|
class Test implements I {
|
|
public void foo(int i) {
|
|
bar();
|
|
bar();
|
|
}
|
|
|
|
void bar(){}
|
|
} |