Files
kotlin-fork/idea/testData/inspectionsLocal/replaceAssociateFunction/associateWith/notPair.kt
T
2019-03-11 19:33:17 +03:00

13 lines
227 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun getValue(i: Int): String = ""
fun test(b: Boolean) {
listOf(1).<caret>associate {
if (b) {
it to getValue(it)
} else {
it to ""
}
}
}