Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
replaceExplicitFunctionLiteralParamWithIt
/
notApplicable_itFromOuterLambda.kt
blob: 0447495a1f27d2dfccbfe02ab7e03758a8c49dea [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
// See KT-12437: it from outer lambda
fun acceptLambda
(
p
:
Int
,
f
:
(
Int
)
->
Int
):
Int
=
f
(
p
)
fun
use
()
{
acceptLambda
(
1
)
{
acceptLambda
(
2
)
{
<caret>
p2
->
it
*
10
+
p2
}
}.
hashCode
()
}