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

9 lines
100 B
Kotlin

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