Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/modifier9/afterMakeDefault.java
Tagir Valeev de8adb5253 [java-inspections] ModifierFix: preview when startsInWriteAction = false and when changes are in another file
Fixes some reports of EA-622822

GitOrigin-RevId: 2e5fd359640ebc500403c0f5108e678380c2584e
2022-10-12 17:24:24 +00:00

10 lines
132 B
Java

// "Make 'I.foo()' public" "true-preview"
interface I {
default void foo() { }
}
class A implements I {
{
this.foo();
}
}