mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
SOE (IDEA-57264)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
class A1<T> {}
|
||||
class B1<T extends A1<? super A1<? super T>>>{
|
||||
{
|
||||
T a = null;
|
||||
A1<? super T> b = a;
|
||||
}
|
||||
}
|
||||
|
||||
class A<T> {}
|
||||
class B<T extends A<? super A<? super T>>> {
|
||||
|
||||
void bar(T x){
|
||||
foo(x);
|
||||
}
|
||||
void foo(A<? super T> x){}
|
||||
void foo(Object x){}
|
||||
}
|
||||
Reference in New Issue
Block a user