avoid endless recursion prevention in RedundantLambdaParameterTypeInspectionTest.testTypeParam

GitOrigin-RevId: e4e5b0b88dd72646d440d7cdf25d8d4ee41c29f1
This commit is contained in:
Peter Gromov
2019-12-09 17:04:58 +00:00
committed by intellij-monorepo-bot
parent 61ca0e13bc
commit a79c3fd906
@@ -5,6 +5,9 @@ class Test3 {
}
static <T> void bar(I<T> i, List<T> l){
}
static void bar2(){
bar((<caret>T x) -> {}, null);
}
}