mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-57315 comment
This commit is contained in:
+13
@@ -2,3 +2,16 @@ class A<K>{
|
||||
void foo(A<A<A<String>>> b){ bar(b); }
|
||||
<U, S extends A<U>, T extends A<S>> void bar(A<T> a){}
|
||||
}
|
||||
|
||||
class C {
|
||||
class B<T> {}
|
||||
abstract class A<T extends B<? super B<String>>> {
|
||||
void bar(A<? extends B<? super B<String>>> a){
|
||||
foo(a);
|
||||
}
|
||||
|
||||
<S, T extends B<? super S>> T foo(A<? extends T> a){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user