testdata for IDEA-127285

This commit is contained in:
Anna Kozlova
2014-08-28 15:03:05 +04:00
parent 426836c303
commit daae222bd0
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
class Test {
public static void main(String[] args) {
multiBound("test");
multiBound(null);
}
static <E extends Comparable<E> & CharSequence> void multiBound(E e) {}
}

View File

@@ -228,6 +228,10 @@ public class GraphInferenceHighlightingTest extends LightDaemonAnalyzerTestCase
doTest();
}
public void testInfiniteTypes() throws Exception {
doTest();
}
private void doTest() throws Exception {
doTest(false);
}