mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +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) {}
|
||||
}
|
||||
@@ -203,6 +203,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA67570() { doTest5(false); }
|
||||
public void testIDEA99061() { doTest5(false); }
|
||||
public void testIDEA99347() { doTest5(false); }
|
||||
public void testIDEA86875() { doTest5(false); }
|
||||
|
||||
public void testJavaUtilCollections_NoVerify() throws Exception {
|
||||
PsiClass collectionsClass = getJavaFacade().findClass("java.util.Collections", GlobalSearchScope.moduleWithLibrariesScope(getModule()));
|
||||
|
||||
Reference in New Issue
Block a user