mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
fix erasure of captures special case, not valid anymore for new compilers (IDEA-131348)
(cherry picked from commit 0f357add956c0340ce08c79a14c052007e53be86)
This commit is contained in:
@@ -4,10 +4,10 @@ class Test {
|
||||
}
|
||||
|
||||
static void foo(final A<?> bar) {
|
||||
bar._("");
|
||||
bar._<error descr="Cannot resolve method '_(java.lang.String)'">("")</error>;
|
||||
}
|
||||
static void foo1(final A<? extends String> bar) {
|
||||
bar._("");
|
||||
bar._<error descr="Cannot resolve method '_(java.lang.String)'">("")</error>;
|
||||
}
|
||||
|
||||
static void foo2(final A<? extends Integer> bar) {
|
||||
|
||||
Reference in New Issue
Block a user