Consider the following: ```groovy import static J.f import static J.m print f m() ``` J.java: ```java class J { static Object f static void m() {} } ``` Organize Imports action will remove the imports for the default-package type "J", breaking the resolution of "f" and "m".
Consider the following:
J.java:
Organize Imports action will remove the imports for the default-package type "J", breaking the resolution of "f" and "m".