mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
new inference: don't push resolved vars in case of failed substitution
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
||||
class B<T>{}
|
||||
class A<T extends B<? extends Runnable>> {
|
||||
void bar(A<? extends B<? extends Cloneable>> a){
|
||||
<error descr="Inferred type 'B<? extends java.lang.Cloneable>' for type parameter 'T' is not within its bound; should extend 'B<java.lang.Object>'">foo(a)</error>;
|
||||
foo<error descr="'foo(A<? extends T>)' in 'A' cannot be applied to '(A<capture<? extends B<? extends java.lang.Cloneable>>>)'">(a)</error>;
|
||||
}
|
||||
|
||||
<S, T extends B<S>> void foo(A<? extends T> a){}
|
||||
|
||||
Reference in New Issue
Block a user