mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
8 lines
95 B
Java
8 lines
95 B
Java
interface A
|
|
{
|
|
static void foo(){}
|
|
}
|
|
interface B extends A
|
|
{
|
|
static int foo(){ return 1; }
|
|
} |