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