mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 11:50:54 +07:00
testdata for IDEA-139156
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import java.util.List;
|
||||
|
||||
interface A<T extends List<String>> { }
|
||||
|
||||
class C {
|
||||
List<A<?>> foo(List<A<? extends Iterable<?>>> x) {
|
||||
return x;
|
||||
}
|
||||
}
|
||||
@@ -898,4 +898,8 @@ public class GenericsHighlighting8Test extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA139222() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testIDEA139156() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user