mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-57537
(cherry picked from commit 701378494912e1f8a52c8f0c9bc18d61e2f3ebbf)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class B<T>{
|
||||
class C {}
|
||||
}
|
||||
class D<T> extends B<B<T>>{
|
||||
void foo(D<?>.C x){
|
||||
bar<error descr="'bar(B<B<S>>.C)' in 'D' cannot be applied to '(D<?>.C)'">(x)</error>;
|
||||
}
|
||||
|
||||
<S> void bar(D<S>.C x){}
|
||||
}
|
||||
Reference in New Issue
Block a user