Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
moveLambdaInsideParentheses
/
moveLabeledLambda1.kt
blob: ede8592719640e5183f6197693053cc8e8ec57a3 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
fun foo
()
{
bar
(
2
)
<caret>
l@
{
it
*
3
}
}
fun bar
(
a
:
Int
,
b
:
(
Int
)
->
Int
)
{
b
(
a
)
}