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

9 lines
101 B
Kotlin
Vendored

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