f950a0246c
Kotlin default import inserter was unable to correctly insert such imports #KT-34165 fixed
8 lines
226 B
Kotlin
Vendored
8 lines
226 B
Kotlin
Vendored
import java.util.HashMap
|
|
|
|
class TestMethodReference {
|
|
private val hashMap = HashMap<String, String>()
|
|
fun update(key: String, msg: String) {
|
|
hashMap.merge(key, msg) { obj: String, s: String -> obj + s }
|
|
}
|
|
} |