This commit is contained in:
Anna Kozlova
2014-04-17 11:16:42 +02:00
parent 9914757d15
commit bd9dbfc7d5
2 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
interface I<T, K extends Integer> {
void m(T t);
void m(K k);
}
@FunctionalInterface
interface IEx extends I<Integer, Integer> { }

View File

@@ -78,6 +78,7 @@ public class LambdaHighlightingTest extends LightDaemonAnalyzerTestCase {
public void testAmbiguitySpecificReturn() { doTest(true); }
public void testFunctionalInterfaceAnnotation() { doTest(); }
public void testFunctionalInterfaceAnnotation2() { doTest(); }
public void testFunctionalInterfaceAnnotation3() { doTest(); }
public void testAmbiguityReturnValueResolution() { doTest(); }
public void testAmbiguityReturnValueResolution1() { doTest(); }
public void testAmbiguityReturnValueResolution2() { doTest(true); }