Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceItWithExplicitFunctionLiteralParam
/
applicable_nestedFunctionLiterals.kt.after
blob: 2c72af5a7c5d3c72be764274f6715fa87615e42f [
file
] [
log
] [
blame
]
fun foo
(
i
:
(
Int
)
->
Int
)
=
0
val x
=
foo
{
it
->
foo
{
x
->
x
+
<caret>
it
}
}