mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
8 lines
121 B
Java
8 lines
121 B
Java
interface Base {
|
|
}
|
|
|
|
interface I2 extends Base {
|
|
void foo() default {
|
|
System.out.println("Hi there.");
|
|
}
|
|
} |