Files
kotlin-fork/idea/testData/intentions/moveLambdaInsideParentheses/moveLabeledLambda2.kt
T
2015-04-29 14:03:11 +03:00

9 lines
105 B
Kotlin

// IS_APPLICABLE: true
fun foo() {
bar <caret>l@{ it * 3 }
}
fun bar(b: (Int) -> Int) {
b(42)
}