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

10 lines
226 B
Java

// "Import static method 'java.util.Collections.emptyList()'" "true-preview"
import java.util.List;
import static java.util.Collections.emptyList;
public class X {
List<String> get() {
return emptyList();
}
}