Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
moveLambdaInsideParentheses
/
moveLambda4.kt
blob: a10b2c252f1a5d9407b8a1835ff237debec70e80 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
fun foo
()
{
bar
(
a
=
2
)
<caret>
{
val x
=
3
it
*
x
}
}
fun bar
(
a
:
Int
,
b
:
(
Int
)
->
Int
)
{
b
(
a
)
}