Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/notApplicable_overloadResolutionAmbiguity.kt
T

7 lines
130 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun test() {
foo { <caret>i -> i + 1 }
}
fun foo(f: (Int) -> Int) {}
fun foo(f: (Int, Int) -> Int) {}