mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
4 lines
168 B
Java
4 lines
168 B
Java
interface Foo {
|
|
public static void bar1() {}
|
|
public <error descr="Illegal combination of modifiers 'abstract' and 'static'">abstract</error> static void bar2() {}
|
|
} |