Files
kotlin-fork/idea/testData/inspectionsLocal/moveLambdaOutsideParentheses/labeledLambda.kt
T

9 lines
112 B
Kotlin
Vendored

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