mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
testdata for IDEA-57320
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class A<T,S> {}
|
||||
class B<T> {
|
||||
A<? extends T, ? extends T> foo(){
|
||||
return null;
|
||||
}
|
||||
|
||||
void bar(B<?> b){ baz<error descr="'baz(A<? extends T,T>)' in 'B' cannot be applied to '(A<capture<?>,capture<?>>)'">(b.foo())</error>; }
|
||||
<T> void baz(A<? extends T,T> a) {}
|
||||
}
|
||||
Reference in New Issue
Block a user