Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addMethodBody/afterSuperAndInterface.java
Bas Leijdekkers 9addc5eaf7 java: include parentheses () in text when referring to methods
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
2022-08-22 17:58:06 +00:00

13 lines
174 B
Java

// "Make 'a.f()' not abstract" "true-preview"
interface a {
default String f() {
return null;
}
}
class b implements a {
void z() {
a.super.f();
}
}