mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
15 lines
181 B
Java
15 lines
181 B
Java
interface I {
|
|
void setBar(int o);
|
|
}
|
|
|
|
interface Foo {
|
|
void setBar(int bar);
|
|
}
|
|
|
|
class Bar implements Foo, I {
|
|
int bar;
|
|
|
|
public void setBar(int bar) {
|
|
this.bar = bar;
|
|
}
|
|
} |