EA-68330 - AIOOBE: RedundantLambdaParameterTypeIntention.isAvailable

process lambdas with formal param types at vararg position
This commit is contained in:
Anna Kozlova
2015-05-12 12:26:42 +02:00
parent 8b320ba8a7
commit 90dd4c5a31
2 changed files with 24 additions and 2 deletions
@@ -0,0 +1,10 @@
// "Remove redundant types" "false"
import java.util.function.Function;
class Test {
<K> void f(Function<K, String>... l){}
{
f(null, (Str<caret>ing s) -> s);
}
}