Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
replaceItWithExplicitFunctionLiteralParam
/
applicable_nestedFunctionWithIt.kt
blob: 72c2b641589fdd7bb97901b281de3e34deb3ae8e [
file
] [
log
] [
blame
]
fun foo
(
a
:
(
Int
)
->
Int
):
Int
=
a
(
1
)
val x
=
foo
{
it
+
foo
{
<caret>
it
}
}