Files
openide/java/java-tests/testData/psi/optimizeImports/DoNotInsertImportForClassVisibleByInheritanceWithModuleConflict.java
Mikhail Pyltsin 46bfa503aa [java-import] IDEA-364508 support optimize imports
- new options are added
- changes for optimize imports

(cherry picked from commit 82b0223f9e7e2972d13ab182ea651cdccd28a5d3)

GitOrigin-RevId: 99f0276e1d9464f75f5bbce91ad09727582d208b
2025-02-13 14:23:52 +00:00

22 lines
338 B
Java

import module java.base;
import one.Super;
import two.*;
import three.*;
class DoNotInsertImportForClassVisibleByInheritanceWithModuleConflict implements Super {
One one;
Two two;
Three three;
Four four;
Five five;
Six six;
Seven seven;
Eight eight;
Nine nine;
Ten ten;
Result x() {
return new Result();
}
}