Files
kotlin-fork/idea/testData/intentions/replaceExplicitFunctionLiteralParamWithIt/applicable_InIfElse.kt
T
2020-06-24 14:55:30 +02:00

4 lines
122 B
Kotlin
Vendored

fun test(i: Int) {
val p: (String) -> Boolean =
if (i == 1) { { s -> true } } else { { <caret>s -> false } }
}