mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
testdata for IDEA-86875
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface Base<E> {}
|
||||
interface Base2<E> {}
|
||||
|
||||
class A<E extends Cloneable> {
|
||||
<P, K extends Base<E>&Base2<P>> void m(K k, P p) {
|
||||
E e = null;
|
||||
m(k, e);
|
||||
}
|
||||
|
||||
void m(Base<E> k, E e) {}
|
||||
}
|
||||
Reference in New Issue
Block a user