Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/modifier/afterDefaultFinalMethod1.java
Andrey.Cherkasov f21e730404 [java-highlighting] Illegal combination of modifiers:
if one of interface method modifiers in illegal combination is 'final' the quick-fix should suggest removing it

IDEA-290172

GitOrigin-RevId: 7264f47c76068c36b4aa4b33f2f796dc1c2c0312
2022-04-05 08:55:05 +00:00

5 lines
69 B
Java

// "Make 'x' not final" "true"
interface X {
default void x() {}
}