mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
5 lines
232 B
Java
5 lines
232 B
Java
interface A {
|
|
final <error descr="Illegal combination of modifiers: 'static' and 'final'">static</error> void foo() {}
|
|
final <error descr="Illegal combination of modifiers: 'default' and 'final'">default</error> void foo() {}
|
|
}
|