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

9 lines
94 B
Kotlin
Vendored

// PROBLEM: none
fun foo() {
bar() <caret>{ it }
}
fun bar(b: (Int) -> Int) {
b(1)
}