Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/problems/NamedParameterInConcurrentMap.kt
T
2022-06-20 11:28:55 +00:00

12 lines
189 B
Kotlin
Vendored

// FULL_JDK
import java.util.concurrent.ConcurrentHashMap
fun main() {
val map = ConcurrentHashMap<String, String>()
map.put(
key = "key",
value = "value"
)
}