Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/modifier/beforeMakeInterfaceMethodNonStatic.java
T
2026-03-27 09:44:38 +00:00

8 lines
132 B
Java

// "Make 'y())' not static" "false"
abstract interface Interface {
int f();
static void y() {
<caret>f(); // <- Error
}
}