mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +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)
7 lines
140 B
Java
7 lines
140 B
Java
import java.util.*;
|
|
class Test {
|
|
void foo(Map<String, ? extends List<String>> m) {
|
|
List<String> l = m.get("");
|
|
l.get(0);
|
|
}
|
|
} |