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

7 lines
108 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo() {
bar(<caret>{ it })
}
fun bar(b: (Int) -> Int, option: Int = 0) { }