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

7 lines
140 B
Kotlin
Vendored

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