Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/modifier/beforeMakeInterfaceMethodStatic.java
T
2026-03-26 14:48:17 +00:00

8 lines
137 B
Java

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