mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-57307
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class C<<warning descr="Type parameter 'T' is never used">T</warning>>{}
|
||||
class A<<warning descr="Type parameter 'S' is never used">S</warning>,<warning descr="Type parameter 'T' is never used">T</warning>> {}
|
||||
class B<S,T extends C<S>> extends A<S,T> {
|
||||
void foo(B<?,?> x){
|
||||
bar(x);
|
||||
}
|
||||
<S, T> void bar(A<S,T> x){
|
||||
System.out.println(x);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user