diff --git a/idea/testData/intentions/replaceItWithExplicitFunctionLiteralParam/applicable_nestedFunctionWithIt.kt.after b/idea/testData/intentions/replaceItWithExplicitFunctionLiteralParam/applicable_nestedFunctionWithIt.kt.after index f9a6f401e92..c87182d7b09 100644 --- a/idea/testData/intentions/replaceItWithExplicitFunctionLiteralParam/applicable_nestedFunctionWithIt.kt.after +++ b/idea/testData/intentions/replaceItWithExplicitFunctionLiteralParam/applicable_nestedFunctionWithIt.kt.after @@ -1,2 +1,2 @@ fun foo(a: (Int) -> Int): Int = a(1) -val x = foo { it + foo { it -> it } } \ No newline at end of file +val x = foo { it + foo { it1 -> it1 } } \ No newline at end of file