fix testdata for muted test IntentionTestGenerated$ReplaceItWithExplicitFunctionLiteralParam.testApplicable_nestedFunctionWithIt

This commit is contained in:
Dmitry Jemerov
2016-07-18 19:56:28 +02:00
parent 785d04708a
commit 9100ca8837
@@ -1,2 +1,2 @@
fun foo(a: (Int) -> Int): Int = a(1)
val x = foo { it + foo { it -> <caret>it } }
val x = foo { it + foo { it1 -> it1 } }