mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
[java-highlighting] Modifier 'final' not allowed at interface methods
IDEA-290172 IJ-CR-23088 GitOrigin-RevId: f93deff04def5d65e0fe0463d1f4d5ba8a8b29d9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
0f95f7408f
commit
071a2db306
@@ -1,4 +1,4 @@
|
||||
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() {}
|
||||
<error descr="Modifier 'final' not allowed here">final</error> static void foo() {}
|
||||
<error descr="Modifier 'final' not allowed here">final</error> default void foo() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user