mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
testdata for IDEA-57309
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class A<S> {
|
||||
void bar(A<? super Exception> x, A<? super Throwable> y){
|
||||
foo(x, y);
|
||||
}
|
||||
|
||||
<T> T foo(A<? super T> x, A<? super T> y){
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -179,6 +179,7 @@ public class GenericsHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testIDEA57308() throws Exception { doTest(false); }
|
||||
public void testIDEA57310() throws Exception { doTest(false); }
|
||||
public void testIDEA57311() throws Exception { doTest(false); }
|
||||
public void testIDEA57309() throws Exception { doTest(false); }
|
||||
public void testInconvertibleTypes() throws Exception { doTest(false); }
|
||||
public void testIncompatibleReturnType() throws Exception { doTest(false); }
|
||||
public void testContinueInferenceAfterFirstRawResult() throws Exception { doTest(false); }
|
||||
|
||||
Reference in New Issue
Block a user