mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 22:11:40 +07:00
testdata for IDEA-139169
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
import java.util.List;
|
||||
|
||||
interface A<T extends A<T> & Cloneable> { }
|
||||
|
||||
class C {
|
||||
List<A<? extends A<?>>> foo(List<A<?>> x) {
|
||||
return x;
|
||||
}
|
||||
}
|
||||
@@ -902,4 +902,8 @@ public class GenericsHighlighting8Test extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA139156() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testIDEA139169() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user