Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
moveLambdaInsideParentheses
/
moveLabeledLambda2.kt.after
blob: ac1a4ddf663b36311c059d71583a99deb389922e [
file
] [
log
] [
blame
]
// IS_APPLICABLE: true
fun foo
()
{
bar
(
l@
{
it
*
3
})
}
fun bar
(
b
:
(
Int
)
->
Int
)
{
b
(
42
)
}