mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
make the statically imported suggestions obey the expected type (IDEA-59720)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import static java.lang.Math.*;
|
||||
|
||||
public class TestClass {
|
||||
private List<String> testList;
|
||||
|
||||
public void testMe() {
|
||||
List<String> newList = new ArrayList<String>(at<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user