mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
inference: fix index for non-proper captured wildcard bounds (IDEA-188487)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
class MyTest {
|
||||
|
||||
private static <T> Map<? super T, ? super String> foo() {
|
||||
return null;
|
||||
}
|
||||
|
||||
{
|
||||
Map<? super Integer, ? super String> action2 = foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user