Files
openide/java/java-tests/testData/refactoring/introduceVariable/TooPopularNameOfTheFollowingCall.java
Anna.Kozlova cacedde038 predict types by following calls for intersection and functional types
following by one common methods, prediction could raise unexpected results when expected class type has no chance to be retrieved from the index (IDEA-183467)
2017-12-08 14:08:07 +01:00

6 lines
135 B
Java

import java.util.*;
class Test {
void foo(Map<String, ? extends List<String>> m) {
<selection>m.get("")</selection>.get(0);
}
}