Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambdaCodeBlock2Expr/beforeNoParamNumberMatchFound.java
Anna Kozlova b12b47c2ea ignore most specific check if parameter count were not matched at all
EA-75076 - AIOOBE: InferenceSession.isMoreSpecific
2015-10-28 16:05:07 +01:00

21 lines
297 B
Java

// "Replace with expression lambda" "false"
class IdeaSetterArgsShouldBeFinal {
interface I {
void m1();
}
interface J {
void m2();
}
<L> void foo(I i, J j1, J... j){}
<K> void foo(I o, I i1, I... i){}
{
foo(() -> {
System.ou<caret>t.println("");
});
}
}