Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addOnDemandStaticImport/afterOutsideOfCodeBody.java
Bas Leijdekkers 311f965f20 on demand static import -> on-demand static import (IDEA-221475)
GitOrigin-RevId: 3cdbe9a8fbad5b785934f8f6280e4140cb8aa75c
2019-10-03 16:04:14 +00:00

10 lines
186 B
Java

// "Add on-demand static import for 'test.Foo'" "true"
package test;
import java.util.List;
import static test.Foo.*;
abstract class Foo implements List<Bar> {
static class Bar {}
}