mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
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)
6 lines
135 B
Java
6 lines
135 B
Java
import java.util.*;
|
|
class Test {
|
|
void foo(Map<String, ? extends List<String>> m) {
|
|
<selection>m.get("")</selection>.get(0);
|
|
}
|
|
} |