mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-57387
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
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>;
|
||||
}
|
||||
|
||||
<S, T extends B<S>> void foo(A<? extends T> a){}
|
||||
}
|
||||
Reference in New Issue
Block a user