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

9 lines
115 B
Kotlin
Vendored

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